docusign / docusign-esign-php-client

The Official Docusign PHP Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
https://www.docusign.com/devcenter
MIT License
198 stars 123 forks source link

Instantiating the List model causes internal server error. #86

Closed dqhendricks closed 4 years ago

dqhendricks commented 4 years ago

The following code causes internal server error:

$blah = new DocuSign\eSign\Model\List();

If I replace "List" with any other model class name, the above code seems to work fine.

dqhendricks commented 4 years ago

Looking through the closed issues, I saw mention of using ModelList class name instead. I tried this. I can now create the model class without error, but the 500 error still happens after, somewhere during adding the tab to the document and sending. Has this new model been tested? Does it need ListItems added in order not to error like this?