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
Description of the integration event. Required when result is failure.
[optional]
details
str
Details of the integration event, that usually contain instructions.
[optional]
action_text
str
Text to be displayed on the UI for the action.
[optional]
retry_url
str
URL that is used to retry the action.
[optional]
Example
fromcloudbeds_pms.models.integration_event_create_request_schemaimportIntegrationEventCreateRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of IntegrationEventCreateRequestSchema from a JSON stringintegration_event_create_request_schema_instance=IntegrationEventCreateRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(IntegrationEventCreateRequestSchema.to_json())
# convert the object into a dictintegration_event_create_request_schema_dict=integration_event_create_request_schema_instance.to_dict()
# create an instance of IntegrationEventCreateRequestSchema from a dictintegration_event_create_request_schema_from_dict=IntegrationEventCreateRequestSchema.from_dict(integration_event_create_request_schema_dict)