Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

File metadata and controls

29 lines (20 loc) · 1.16 KB

RoomCustomAmenitiesResponseSchema

Properties

Name Type Description Notes
custom_amenities List[str] List of custom room amenities

Example

from cloudbeds_pms.models.room_custom_amenities_response_schema import RoomCustomAmenitiesResponseSchema

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

# convert the object into a dict
room_custom_amenities_response_schema_dict = room_custom_amenities_response_schema_instance.to_dict()
# create an instance of RoomCustomAmenitiesResponseSchema from a dict
room_custom_amenities_response_schema_from_dict = RoomCustomAmenitiesResponseSchema.from_dict(room_custom_amenities_response_schema_dict)

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