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
An object for customization of the webhook event payload. You only need to include the fields you want to customize. The provided fields must match the webhook event data structure, depending on the specified event type. For a complete introduction of the webhook event data structure, refer to the `data.data` property in the response of List all webhook events. If this property is not provided, a default payload will be returned.
[optional]
Example
fromcobo_waas2.models.trigger_test_webhook_event_requestimportTriggerTestWebhookEventRequest# TODO update the JSON string belowjson="{}"# create an instance of TriggerTestWebhookEventRequest from a JSON stringtrigger_test_webhook_event_request_instance=TriggerTestWebhookEventRequest.from_json(json)
# print the JSON string representation of the objectprint(TriggerTestWebhookEventRequest.to_json())
# convert the object into a dicttrigger_test_webhook_event_request_dict=trigger_test_webhook_event_request_instance.to_dict()
# create an instance of TriggerTestWebhookEventRequest from a dicttrigger_test_webhook_event_request_from_dict=TriggerTestWebhookEventRequest.from_dict(trigger_test_webhook_event_request_dict)