Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1010 Bytes

File metadata and controls

36 lines (27 loc) · 1010 Bytes

Webhook

Properties

Name Type Description Notes
id UUID
tenant_id UUID [optional]
url str
events List[str]
secret str [optional]
active bool
created_at datetime
updated_at datetime

Example

from stratum.models.webhook import Webhook

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

# convert the object into a dict
webhook_dict = webhook_instance.to_dict()
# create an instance of Webhook from a dict
webhook_from_dict = Webhook.from_dict(webhook_dict)

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