Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

CustomWebhooklogResponse.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

CustomWebhooklogResponse

A custom Webhooklog object

Properties

Name Type Description Notes
dt_webhooklog_date str The date and time at which the Webhooklog happened.
t_webhooklog_json str The Json containing the Webhook call and return

Example

from eZmaxApi.models.custom_webhooklog_response import CustomWebhooklogResponse

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

# convert the object into a dict
custom_webhooklog_response_dict = custom_webhooklog_response_instance.to_dict()
# create an instance of CustomWebhooklogResponse from a dict
custom_webhooklog_response_from_dict = CustomWebhooklogResponse.from_dict(custom_webhooklog_response_dict)

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