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 AccessLevel object is used to represent the level of access that a principal has. The "default" access level is a AccessLevel object whose fields are all empty strings. ### Usage Example View the AccessLevel of a resource/user or resource/group pair to see the level of access granted to the resource.
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.resource_access_levelimportResourceAccessLevel# TODO update the JSON string belowjson="{}"# create an instance of ResourceAccessLevel from a JSON stringresource_access_level_instance=ResourceAccessLevel.from_json(json)
# print the JSON string representation of the objectprint(ResourceAccessLevel.to_json())
# convert the object into a dictresource_access_level_dict=resource_access_level_instance.to_dict()
# create an instance of ResourceAccessLevel from a dictresource_access_level_from_dict=ResourceAccessLevel.from_dict(resource_access_level_dict)