Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

File metadata and controls

31 lines (22 loc) · 966 Bytes

OccupancyData

Properties

Name Type Description Notes
units int [optional]
adults int [optional]
children_ages List[int] [optional]

Example

from feratel_client.models.occupancy_data import OccupancyData

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

# convert the object into a dict
occupancy_data_dict = occupancy_data_instance.to_dict()
# create an instance of OccupancyData from a dict
occupancy_data_from_dict = OccupancyData.from_dict(occupancy_data_dict)

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