Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

PolicyExceptionListResponseSchema

Properties

Name Type Description Notes
limit int The limit for the number of items to return.
offset int The offset for the current page of results.
data List[PolicyExceptionResponseSchema]

Example

from cloudbeds_pms.models.policy_exception_list_response_schema import PolicyExceptionListResponseSchema

# TODO update the JSON string below
json = "{}"
# create an instance of PolicyExceptionListResponseSchema from a JSON string
policy_exception_list_response_schema_instance = PolicyExceptionListResponseSchema.from_json(json)
# print the JSON string representation of the object
print(PolicyExceptionListResponseSchema.to_json())

# convert the object into a dict
policy_exception_list_response_schema_dict = policy_exception_list_response_schema_instance.to_dict()
# create an instance of PolicyExceptionListResponseSchema from a dict
policy_exception_list_response_schema_from_dict = PolicyExceptionListResponseSchema.from_dict(policy_exception_list_response_schema_dict)

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