Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.09 KB

File metadata and controls

35 lines (26 loc) · 1.09 KB

WebhookLog

Properties

Name Type Description Notes
failed_attempts int [optional]
id str [optional]
last_attempted_at int [optional]
last_http_response_status int [optional]
object str [optional]
response_data Dict[str, object] [optional]
url str [optional]

Example

from conekta.models.webhook_log import WebhookLog

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

# convert the object into a dict
webhook_log_dict = webhook_log_instance.to_dict()
# create an instance of WebhookLog from a dict
webhook_log_from_dict = WebhookLog.from_dict(webhook_log_dict)

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