Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.33 KB

File metadata and controls

29 lines (20 loc) · 1.33 KB

TriggerTestWebhookEvent201Response

Properties

Name Type Description Notes
triggered bool 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

from cobo_waas2.models.trigger_test_webhook_event201_response import TriggerTestWebhookEvent201Response

# TODO update the JSON string below
json = "{}"
# create an instance of TriggerTestWebhookEvent201Response from a JSON string
trigger_test_webhook_event201_response_instance = TriggerTestWebhookEvent201Response.from_json(json)
# print the JSON string representation of the object
print(TriggerTestWebhookEvent201Response.to_json())

# convert the object into a dict
trigger_test_webhook_event201_response_dict = trigger_test_webhook_event201_response_instance.to_dict()
# create an instance of TriggerTestWebhookEvent201Response from a dict
trigger_test_webhook_event201_response_from_dict = TriggerTestWebhookEvent201Response.from_dict(trigger_test_webhook_event201_response_dict)

[Back to Model list] [Back to API list] [Back to README]