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
Requested Item Object ### Description The RequestedItem object is used to represent a request target item. ### Usage Example Returned from the GET Requests endpoint.
Properties
Name
Type
Description
Notes
resource_id
UUID
The ID of the resource requested.
[optional]
group_id
UUID
The ID of the group requested.
[optional]
access_level_name
str
The name of the access level requested.
[optional]
access_level_remote_id
str
The ID of the access level requested on the remote system.
[optional]
name
str
The name of the target.
[optional]
remote_id
str
The ID of the target on the remote system.
[optional]
remote_name
str
The name of the target on the remote system.
[optional]
Example
fromopal_security.models.requested_itemimportRequestedItem# TODO update the JSON string belowjson="{}"# create an instance of RequestedItem from a JSON stringrequested_item_instance=RequestedItem.from_json(json)
# print the JSON string representation of the objectprint(RequestedItem.to_json())
# convert the object into a dictrequested_item_dict=requested_item_instance.to_dict()
# create an instance of RequestedItem from a dictrequested_item_from_dict=RequestedItem.from_dict(requested_item_dict)