| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| config | str | ||
| extra_guests_config | str | ||
| custom_label | str | [optional] | |
| groups | List[AgeGroupResponseSchema] | [optional] | |
| created_at | str | ||
| updated_at | str | [optional] |
from cloudbeds_pms.models.age_policy_response_schema import AgePolicyResponseSchema
# TODO update the JSON string below
json = "{}"
# create an instance of AgePolicyResponseSchema from a JSON string
age_policy_response_schema_instance = AgePolicyResponseSchema.from_json(json)
# print the JSON string representation of the object
print(AgePolicyResponseSchema.to_json())
# convert the object into a dict
age_policy_response_schema_dict = age_policy_response_schema_instance.to_dict()
# create an instance of AgePolicyResponseSchema from a dict
age_policy_response_schema_from_dict = AgePolicyResponseSchema.from_dict(age_policy_response_schema_dict)