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
Resource Access User Object ### Description The ResourceAccessUser object is used to represent a user with access to a resource, either directly or indirectly through group(s). ### Usage Example Fetch from the LIST ResourceUsers endpoint.
fromopal_security.models.resource_access_userimportResourceAccessUser# TODO update the JSON string belowjson="{}"# create an instance of ResourceAccessUser from a JSON stringresource_access_user_instance=ResourceAccessUser.from_json(json)
# print the JSON string representation of the objectprint(ResourceAccessUser.to_json())
# convert the object into a dictresource_access_user_dict=resource_access_user_instance.to_dict()
# create an instance of ResourceAccessUser from a dictresource_access_user_from_dict=ResourceAccessUser.from_dict(resource_access_user_dict)