Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

File metadata and controls

35 lines (26 loc) · 1.25 KB

AgePolicyResponseSchema

Properties

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]

Example

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)

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