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
Request List ### Description The RequestList object is used to represent a list of requests. ### Usage Example Returned from the GET Requests endpoint.
The cursor to use in the next request to get the next page of results.
[optional]
Example
fromopal_security.models.request_listimportRequestList# TODO update the JSON string belowjson="{}"# create an instance of RequestList from a JSON stringrequest_list_instance=RequestList.from_json(json)
# print the JSON string representation of the objectprint(RequestList.to_json())
# convert the object into a dictrequest_list_dict=request_list_instance.to_dict()
# create an instance of RequestList from a dictrequest_list_from_dict=RequestList.from_dict(request_list_dict)