Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.37 KB

File metadata and controls

33 lines (24 loc) · 1.37 KB

AgePolicyUpdateRequestSchema

Properties

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]

Example

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)

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