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
Unique identifier for the object associated with the integration event.
[optional]
object_type
str
Type of object associated with the integration event.
system
str
Type of system associated with the integration event.
status
str
Status of the integration event.
result
str
Result of the integration event.
description
str
Short description of the integration event.
[optional]
details
str
Detailed information about the integration event.
[optional]
action_text
str
Text to be displayed for the action associated with the integration event.
[optional]
created_at
str
updated_at
str
[optional]
retried_at
str
[optional]
Example
fromcloudbeds_pms.models.integration_event_response_schemaimportIntegrationEventResponseSchema# TODO update the JSON string belowjson="{}"# create an instance of IntegrationEventResponseSchema from a JSON stringintegration_event_response_schema_instance=IntegrationEventResponseSchema.from_json(json)
# print the JSON string representation of the objectprint(IntegrationEventResponseSchema.to_json())
# convert the object into a dictintegration_event_response_schema_dict=integration_event_response_schema_instance.to_dict()
# create an instance of IntegrationEventResponseSchema from a dictintegration_event_response_schema_from_dict=IntegrationEventResponseSchema.from_dict(integration_event_response_schema_dict)