Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.16 KB

File metadata and controls

37 lines (28 loc) · 1.16 KB

WebhookDelivery

Properties

Name Type Description Notes
id UUID
webhook_id UUID
event_type str
payload Dict[str, object] [optional]
status str
http_status int [optional]
attempts int
last_attempt_at datetime [optional]
created_at datetime

Example

from stratum.models.webhook_delivery import WebhookDelivery

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

# convert the object into a dict
webhook_delivery_dict = webhook_delivery_instance.to_dict()
# create an instance of WebhookDelivery from a dict
webhook_delivery_from_dict = WebhookDelivery.from_dict(webhook_delivery_dict)

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