| Name |
Type |
Description |
Notes |
| tenant_id |
UUID |
|
[optional] |
| url |
str |
|
|
| events |
List[str] |
|
|
| secret |
str |
|
[optional] |
from stratum.models.create_webhook_input import CreateWebhookInput
# TODO update the JSON string below
json = "{}"
# create an instance of CreateWebhookInput from a JSON string
create_webhook_input_instance = CreateWebhookInput.from_json(json)
# print the JSON string representation of the object
print(CreateWebhookInput.to_json())
# convert the object into a dict
create_webhook_input_dict = create_webhook_input_instance.to_dict()
# create an instance of CreateWebhookInput from a dict
create_webhook_input_from_dict = CreateWebhookInput.from_dict(create_webhook_input_dict)
[Back to Model list] [Back to API list] [Back to README]