Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 915 Bytes

File metadata and controls

30 lines (21 loc) · 915 Bytes

RequestEdge

Properties

Name Type Description Notes
node Request
cursor str The cursor for this request edge

Example

from opal_security.models.request_edge import RequestEdge

# TODO update the JSON string below
json = "{}"
# create an instance of RequestEdge from a JSON string
request_edge_instance = RequestEdge.from_json(json)
# print the JSON string representation of the object
print(RequestEdge.to_json())

# convert the object into a dict
request_edge_dict = request_edge_instance.to_dict()
# create an instance of RequestEdge from a dict
request_edge_from_dict = RequestEdge.from_dict(request_edge_dict)

[Back to Model list] [Back to API list] [Back to README]