Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ApproveRequest200Response

Properties

Name Type Description Notes
request Request [optional]

Example

from opal_security.models.approve_request200_response import ApproveRequest200Response

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

# convert the object into a dict
approve_request200_response_dict = approve_request200_response_instance.to_dict()
# create an instance of ApproveRequest200Response from a dict
approve_request200_response_from_dict = ApproveRequest200Response.from_dict(approve_request200_response_dict)

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