Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

File metadata and controls

29 lines (20 loc) · 1.12 KB

GetRoomLabelsResponseSchema

Properties

Name Type Description Notes
labels List[RoomLabelItemSchema] List of room labels in the catalog

Example

from cloudbeds_pms.models.get_room_labels_response_schema import GetRoomLabelsResponseSchema

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

# convert the object into a dict
get_room_labels_response_schema_dict = get_room_labels_response_schema_instance.to_dict()
# create an instance of GetRoomLabelsResponseSchema from a dict
get_room_labels_response_schema_from_dict = GetRoomLabelsResponseSchema.from_dict(get_room_labels_response_schema_dict)

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