You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Age group type. Must be one of the valid age group types.
min_age
int
Minimum age for this age group.
max_age
int
Maximum age for this age group.
[optional]
apply_rate_from_id
str
Apply rate from age group ID.
[optional]
Example
fromcloudbeds_pms.models.age_policy_update_request_schema_groups_innerimportAgePolicyUpdateRequestSchemaGroupsInner# TODO update the JSON string belowjson="{}"# create an instance of AgePolicyUpdateRequestSchemaGroupsInner from a JSON stringage_policy_update_request_schema_groups_inner_instance=AgePolicyUpdateRequestSchemaGroupsInner.from_json(json)
# print the JSON string representation of the objectprint(AgePolicyUpdateRequestSchemaGroupsInner.to_json())
# convert the object into a dictage_policy_update_request_schema_groups_inner_dict=age_policy_update_request_schema_groups_inner_instance.to_dict()
# create an instance of AgePolicyUpdateRequestSchemaGroupsInner from a dictage_policy_update_request_schema_groups_inner_from_dict=AgePolicyUpdateRequestSchemaGroupsInner.from_dict(age_policy_update_request_schema_groups_inner_dict)