| Name |
Type |
Description |
Notes |
| units |
int |
|
[optional] |
| adults |
int |
|
[optional] |
| children_ages |
List[int] |
|
[optional] |
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]