Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

GroupUserList

Properties

Name Type Description Notes
results List[GroupUser] [optional]
next str The cursor with which to continue pagination if additional result pages exist. [optional]
previous str The cursor used to obtain the current result page. [optional]

Example

from opal_security.models.group_user_list import GroupUserList

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

# convert the object into a dict
group_user_list_dict = group_user_list_instance.to_dict()
# create an instance of GroupUserList from a dict
group_user_list_from_dict = GroupUserList.from_dict(group_user_list_dict)

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