Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.42 KB

WebhookEzsignDocumentUnsent.md

File metadata and controls

32 lines (23 loc) · 1.42 KB

WebhookEzsignDocumentUnsent

This is the base Webhook object

Properties

Name Type Description Notes
obj_webhook CustomWebhookResponse
a_obj_attempt List[AttemptResponseCompound] An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt.
obj_ezsigndocument EzsigndocumentResponse

Example

from eZmaxApi.models.webhook_ezsign_document_unsent import WebhookEzsignDocumentUnsent

# TODO update the JSON string below
json = "{}"
# create an instance of WebhookEzsignDocumentUnsent from a JSON string
webhook_ezsign_document_unsent_instance = WebhookEzsignDocumentUnsent.from_json(json)
# print the JSON string representation of the object
print(WebhookEzsignDocumentUnsent.to_json())

# convert the object into a dict
webhook_ezsign_document_unsent_dict = webhook_ezsign_document_unsent_instance.to_dict()
# create an instance of WebhookEzsignDocumentUnsent from a dict
webhook_ezsign_document_unsent_form_dict = webhook_ezsign_document_unsent.from_dict(webhook_ezsign_document_unsent_dict)

[Back to Model list] [Back to API list] [Back to README]