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
The updated duration for which the resource can be accessed (in minutes). Use 0 for indefinite.
access_level_remote_id
str
The updated remote ID of the access level granted to this user.
[optional]
Example
fromopal_security.models.update_resource_user_requestimportUpdateResourceUserRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateResourceUserRequest from a JSON stringupdate_resource_user_request_instance=UpdateResourceUserRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateResourceUserRequest.to_json())
# convert the object into a dictupdate_resource_user_request_dict=update_resource_user_request_instance.to_dict()
# create an instance of UpdateResourceUserRequest from a dictupdate_resource_user_request_from_dict=UpdateResourceUserRequest.from_dict(update_resource_user_request_dict)