Account


Earned badges

Achievement: Latest Unlocked

Topic Started

This user has not created any forum posts.

Replies Created

Reply to: Apex call to getPackage() method not working

0 votes
I was able to fix this. I modified ESignLIveApiObjects.cls. The Document.data variable is returning as a class, not a string. "data":{ "ese_document_texttag_extract_needed":"false" }, So I modified the Document definition as follows: public class Document { public List approvals; // ctewell change variable name because it is coming back as a class. public String dataZ; .... .... then in the constructor: public Document(List approvals, String data, String description, External external, List fields, String id, Integer index, String name, List pages, Integer size) { this.approvals = approvals; this.dataZ = data; ... ... dataZ gets ignored. I could have defined data as an inner class but don't care about the attribute.

Subscriptions

This user is not subscribed to any release notes.

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.