Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.69 KB

File metadata and controls

33 lines (24 loc) · 1.69 KB

WebhookEzsignEzsignsignerAcceptclause

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_ezsignfolder EzsignfolderResponse [optional]
obj_ezsignfoldersignerassociation EzsignfoldersignerassociationResponseCompound

Example

from eZmaxApi.models.webhook_ezsign_ezsignsigner_acceptclause import WebhookEzsignEzsignsignerAcceptclause

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

# convert the object into a dict
webhook_ezsign_ezsignsigner_acceptclause_dict = webhook_ezsign_ezsignsigner_acceptclause_instance.to_dict()
# create an instance of WebhookEzsignEzsignsignerAcceptclause from a dict
webhook_ezsign_ezsignsigner_acceptclause_from_dict = WebhookEzsignEzsignsignerAcceptclause.from_dict(webhook_ezsign_ezsignsigner_acceptclause_dict)

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