| 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] |
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)