Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

IntegrationEventUpdateRequestSchema

Properties

Name Type Description Notes
status str Status of the integration event.

Example

from cloudbeds_pms.models.integration_event_update_request_schema import IntegrationEventUpdateRequestSchema

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

# convert the object into a dict
integration_event_update_request_schema_dict = integration_event_update_request_schema_instance.to_dict()
# create an instance of IntegrationEventUpdateRequestSchema from a dict
integration_event_update_request_schema_from_dict = IntegrationEventUpdateRequestSchema.from_dict(integration_event_update_request_schema_dict)

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