| 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 |
|
|
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]