Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 911 Bytes

File metadata and controls

30 lines (21 loc) · 911 Bytes

GroupList

Properties

Name Type Description Notes
groups List[Group] [optional]
pagination Pagination [optional]

Example

from ibutsu_client.models.group_list import GroupList

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

# convert the object into a dict
group_list_dict = group_list_instance.to_dict()
# create an instance of GroupList from a dict
group_list_from_dict = GroupList.from_dict(group_list_dict)

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