Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

AgeGroupResponseSchema

Properties

Name Type Description Notes
id str
group_type str
min_age int
max_age int [optional]
created_at str
updated_at str [optional]

Example

from cloudbeds_pms.models.age_group_response_schema import AgeGroupResponseSchema

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

# convert the object into a dict
age_group_response_schema_dict = age_group_response_schema_instance.to_dict()
# create an instance of AgeGroupResponseSchema from a dict
age_group_response_schema_from_dict = AgeGroupResponseSchema.from_dict(age_group_response_schema_dict)

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