Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

IntegrationEventListResponseSchema

Properties

Name Type Description Notes
data List[IntegrationEventResponseSchema]
total int The total number of items available

Example

from cloudbeds_pms.models.integration_event_list_response_schema import IntegrationEventListResponseSchema

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

# convert the object into a dict
integration_event_list_response_schema_dict = integration_event_list_response_schema_instance.to_dict()
# create an instance of IntegrationEventListResponseSchema from a dict
integration_event_list_response_schema_from_dict = IntegrationEventListResponseSchema.from_dict(integration_event_list_response_schema_dict)

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