You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list of event types that will trigger the webhook notification.
Example
fromlilt.models.webhooks_update_request_any_of2importWebhooksUpdateRequestAnyOf2# TODO update the JSON string belowjson="{}"# create an instance of WebhooksUpdateRequestAnyOf2 from a JSON stringwebhooks_update_request_any_of2_instance=WebhooksUpdateRequestAnyOf2.from_json(json)
# print the JSON string representation of the objectprint(WebhooksUpdateRequestAnyOf2.to_json())
# convert the object into a dictwebhooks_update_request_any_of2_dict=webhooks_update_request_any_of2_instance.to_dict()
# create an instance of WebhooksUpdateRequestAnyOf2 from a dictwebhooks_update_request_any_of2_from_dict=WebhooksUpdateRequestAnyOf2.from_dict(webhooks_update_request_any_of2_dict)