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_user | UserResponseCompound |
from eZmaxApi.models.webhook_user_user_created import WebhookUserUserCreated
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookUserUserCreated from a JSON string
webhook_user_user_created_instance = WebhookUserUserCreated.from_json(json)
# print the JSON string representation of the object
print(WebhookUserUserCreated.to_json())
# convert the object into a dict
webhook_user_user_created_dict = webhook_user_user_created_instance.to_dict()
# create an instance of WebhookUserUserCreated from a dict
webhook_user_user_created_form_dict = webhook_user_user_created.from_dict(webhook_user_user_created_dict)