Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ArrangementItemSchema

Properties

Name Type Description Notes
is_default bool Whether this is the default arrangement
position int Position/order of this arrangement
beds List[BedItemSchema] List of beds in this arrangement

Example

from cloudbeds_pms.models.arrangement_item_schema import ArrangementItemSchema

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

# convert the object into a dict
arrangement_item_schema_dict = arrangement_item_schema_instance.to_dict()
# create an instance of ArrangementItemSchema from a dict
arrangement_item_schema_from_dict = ArrangementItemSchema.from_dict(arrangement_item_schema_dict)

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