Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

GetGroupsResponse.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

GetGroupsResponse

Properties

Name Type Description Notes
next str Next page of results token [optional]
groups List[Group] List of groups [optional]

Example

from formkiq_client.models.get_groups_response import GetGroupsResponse

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

# convert the object into a dict
get_groups_response_dict = get_groups_response_instance.to_dict()
# create an instance of GetGroupsResponse from a dict
get_groups_response_from_dict = GetGroupsResponse.from_dict(get_groups_response_dict)

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