Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.74 KB

File metadata and controls

30 lines (21 loc) · 1.74 KB

TriggerTestPaymentsWebhookEventRequest

Properties

Name Type Description Notes
event_type WebhookEventType
override_data object An optional object to customize the webhook event payload. Include only the fields you want to override. The provided fields must match the webhook event data structure for the specified event type. For the full event data structure, refer to the `data.data` property in the response of List all webhook events. If this property is omitted, a default payload is returned. [optional]

Example

from cobo_waas2.models.trigger_test_payments_webhook_event_request import TriggerTestPaymentsWebhookEventRequest

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

# convert the object into a dict
trigger_test_payments_webhook_event_request_dict = trigger_test_payments_webhook_event_request_instance.to_dict()
# create an instance of TriggerTestPaymentsWebhookEventRequest from a dict
trigger_test_payments_webhook_event_request_from_dict = TriggerTestPaymentsWebhookEventRequest.from_dict(trigger_test_payments_webhook_event_request_dict)

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