Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

GroupListResponseSchema

Properties

Name Type Description Notes
limit int [optional]
offset int [optional]
data List[GroupResponseSchema] [optional]

Example

from cloudbeds_pms.models.group_list_response_schema import GroupListResponseSchema

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

# convert the object into a dict
group_list_response_schema_dict = group_list_response_schema_instance.to_dict()
# create an instance of GroupListResponseSchema from a dict
group_list_response_schema_from_dict = GroupListResponseSchema.from_dict(group_list_response_schema_dict)

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