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
Whether a test webhook event was successfully triggered. - `true`: The test webhook event was successfully triggered. - `false`: The test webhook event could not be triggered.
[optional]
Example
fromcobo_waas2.models.trigger_test_webhook_event201_responseimportTriggerTestWebhookEvent201Response# TODO update the JSON string belowjson="{}"# create an instance of TriggerTestWebhookEvent201Response from a JSON stringtrigger_test_webhook_event201_response_instance=TriggerTestWebhookEvent201Response.from_json(json)
# print the JSON string representation of the objectprint(TriggerTestWebhookEvent201Response.to_json())
# convert the object into a dicttrigger_test_webhook_event201_response_dict=trigger_test_webhook_event201_response_instance.to_dict()
# create an instance of TriggerTestWebhookEvent201Response from a dicttrigger_test_webhook_event201_response_from_dict=TriggerTestWebhookEvent201Response.from_dict(trigger_test_webhook_event201_response_dict)