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
The limit for the number of items to return (max 500)
[optional] [default to 100]
offset
int
The offset for the current page of results
[optional] [default to 0]
id
str
Segment ID.
active
bool
List only active reservations.
[optional]
Example
fromcloudbeds_pms.models.segment_list_reservations_request_schemaimportSegmentListReservationsRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of SegmentListReservationsRequestSchema from a JSON stringsegment_list_reservations_request_schema_instance=SegmentListReservationsRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(SegmentListReservationsRequestSchema.to_json())
# convert the object into a dictsegment_list_reservations_request_schema_dict=segment_list_reservations_request_schema_instance.to_dict()
# create an instance of SegmentListReservationsRequestSchema from a dictsegment_list_reservations_request_schema_from_dict=SegmentListReservationsRequestSchema.from_dict(segment_list_reservations_request_schema_dict)