| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Age Policy ID. | |
| config | str | Configuration. | |
| extra_guests_config | str | Extra guests configuration. | |
| groups | List[AgePolicyUpdateRequestSchemaGroupsInner] | List of age groups. | |
| custom_label | str | Custom label (Adults or Guests) | [optional] |
from cloudbeds_pms.models.age_policy_update_request_schema import AgePolicyUpdateRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of AgePolicyUpdateRequestSchema from a JSON string
age_policy_update_request_schema_instance = AgePolicyUpdateRequestSchema.from_json(json)
# print the JSON string representation of the object
print(AgePolicyUpdateRequestSchema.to_json())
# convert the object into a dict
age_policy_update_request_schema_dict = age_policy_update_request_schema_instance.to_dict()
# create an instance of AgePolicyUpdateRequestSchema from a dict
age_policy_update_request_schema_from_dict = AgePolicyUpdateRequestSchema.from_dict(age_policy_update_request_schema_dict)