You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Group Access User Object ### Description The GroupAccessUser object is used to represent a user with access to a group. ### Usage Example Fetch from the LIST GroupUsers endpoint.
fromopal_security.models.group_userimportGroupUser# TODO update the JSON string belowjson="{}"# create an instance of GroupUser from a JSON stringgroup_user_instance=GroupUser.from_json(json)
# print the JSON string representation of the objectprint(GroupUser.to_json())
# convert the object into a dictgroup_user_dict=group_user_instance.to_dict()
# create an instance of GroupUser from a dictgroup_user_from_dict=GroupUser.from_dict(group_user_dict)