Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

RoomAmenitiesUpdateSchema

Properties

Name Type Description Notes
id str Room ID
amenities List[AmenityItemSchema] List of active amenities for this room

Example

from cloudbeds_pms.models.room_amenities_update_schema import RoomAmenitiesUpdateSchema

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

# convert the object into a dict
room_amenities_update_schema_dict = room_amenities_update_schema_instance.to_dict()
# create an instance of RoomAmenitiesUpdateSchema from a dict
room_amenities_update_schema_from_dict = RoomAmenitiesUpdateSchema.from_dict(room_amenities_update_schema_dict)

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