| Name | Type | Description | Notes |
|---|---|---|---|
| config | str | Configuration. | |
| extra_guests_config | str | Extra guests configuration. | |
| groups | List[AgePolicyCreateRequestSchemaGroupsInner] | List of age groups. | |
| custom_label | str | Custom label (Adults or Guests) | [optional] |
from cloudbeds_pms.models.age_policy_create_request_schema import AgePolicyCreateRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of AgePolicyCreateRequestSchema from a JSON string
age_policy_create_request_schema_instance = AgePolicyCreateRequestSchema.from_json(json)
# print the JSON string representation of the object
print(AgePolicyCreateRequestSchema.to_json())
# convert the object into a dict
age_policy_create_request_schema_dict = age_policy_create_request_schema_instance.to_dict()
# create an instance of AgePolicyCreateRequestSchema from a dict
age_policy_create_request_schema_from_dict = AgePolicyCreateRequestSchema.from_dict(age_policy_create_request_schema_dict)