Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

SegmentListReservationsResponseSchema

Properties

Name Type Description Notes
id str [optional]
limit int [optional]
offset int [optional]
reservation_ids List[str] [optional]

Example

from cloudbeds_pms.models.segment_list_reservations_response_schema import SegmentListReservationsResponseSchema

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

# convert the object into a dict
segment_list_reservations_response_schema_dict = segment_list_reservations_response_schema_instance.to_dict()
# create an instance of SegmentListReservationsResponseSchema from a dict
segment_list_reservations_response_schema_from_dict = SegmentListReservationsResponseSchema.from_dict(segment_list_reservations_response_schema_dict)

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