Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

CommonWebhook.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

CommonWebhook

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.

Example

from eZmaxApi.models.common_webhook import CommonWebhook

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

# convert the object into a dict
common_webhook_dict = common_webhook_instance.to_dict()
# create an instance of CommonWebhook from a dict
common_webhook_form_dict = common_webhook.from_dict(common_webhook_dict)

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