This is the base Webhook object
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 |
from eZmaxApi.models.webhook_ezsign_folder_disposed import WebhookEzsignFolderDisposed
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookEzsignFolderDisposed from a JSON string
webhook_ezsign_folder_disposed_instance = WebhookEzsignFolderDisposed.from_json(json)
# print the JSON string representation of the object
print(WebhookEzsignFolderDisposed.to_json())
# convert the object into a dict
webhook_ezsign_folder_disposed_dict = webhook_ezsign_folder_disposed_instance.to_dict()
# create an instance of WebhookEzsignFolderDisposed from a dict
webhook_ezsign_folder_disposed_form_dict = webhook_ezsign_folder_disposed.from_dict(webhook_ezsign_folder_disposed_dict)