Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

AgePolicyCreateRequestSchema

Properties

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]

Example

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)

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