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 new event types you want to subscribe to for this webhook endpoint. You can call Get webhook event types to retrieve all available event types.
[optional]
status
str
The new status you want to set the webhook endpoint to. If you set `status` to `STATUS_INACTIVE`, the endpoint will be revoked, meaning it will no longer receive any webhook events.
[optional]
description
str
The webhook endpoint description.
[optional]
Example
fromcobo_waas2.models.update_webhook_endpoint_by_id_requestimportUpdateWebhookEndpointByIdRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateWebhookEndpointByIdRequest from a JSON stringupdate_webhook_endpoint_by_id_request_instance=UpdateWebhookEndpointByIdRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateWebhookEndpointByIdRequest.to_json())
# convert the object into a dictupdate_webhook_endpoint_by_id_request_dict=update_webhook_endpoint_by_id_request_instance.to_dict()
# create an instance of UpdateWebhookEndpointByIdRequest from a dictupdate_webhook_endpoint_by_id_request_from_dict=UpdateWebhookEndpointByIdRequest.from_dict(update_webhook_endpoint_by_id_request_dict)