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
Access Level Object ### Description The GroupAccessLevel object is used to represent the level of access that a user has to a group or a group has to a group. The "default" access level is a GroupAccessLevel object whose fields are all empty strings. ### Usage Example View the GroupAccessLevel of a group/user or group/group pair to see the level of access granted to the group.
Properties
Name
Type
Description
Notes
access_level_name
str
The human-readable name of the access level.
access_level_remote_id
str
The machine-readable identifier of the access level.
Example
fromopal_security.models.group_access_levelimportGroupAccessLevel# TODO update the JSON string belowjson="{}"# create an instance of GroupAccessLevel from a JSON stringgroup_access_level_instance=GroupAccessLevel.from_json(json)
# print the JSON string representation of the objectprint(GroupAccessLevel.to_json())
# convert the object into a dictgroup_access_level_dict=group_access_level_instance.to_dict()
# create an instance of GroupAccessLevel from a dictgroup_access_level_from_dict=GroupAccessLevel.from_dict(group_access_level_dict)