Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

DenyRequestRequest

Properties

Name Type Description Notes
comment str Comment for the denial
level RequestApprovalEnum [optional]

Example

from opal_security.models.deny_request_request import DenyRequestRequest

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

# convert the object into a dict
deny_request_request_dict = deny_request_request_instance.to_dict()
# create an instance of DenyRequestRequest from a dict
deny_request_request_from_dict = DenyRequestRequest.from_dict(deny_request_request_dict)

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