| Name |
Type |
Description |
Notes |
| url |
str |
|
[optional] |
| events |
List[str] |
|
[optional] |
| secret |
str |
|
[optional] |
| active |
bool |
|
[optional] |
from stratum.models.update_webhook_input import UpdateWebhookInput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateWebhookInput from a JSON string
update_webhook_input_instance = UpdateWebhookInput.from_json(json)
# print the JSON string representation of the object
print(UpdateWebhookInput.to_json())
# convert the object into a dict
update_webhook_input_dict = update_webhook_input_instance.to_dict()
# create an instance of UpdateWebhookInput from a dict
update_webhook_input_from_dict = UpdateWebhookInput.from_dict(update_webhook_input_dict)
[Back to Model list] [Back to API list] [Back to README]