Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1001 Bytes

File metadata and controls

31 lines (22 loc) · 1001 Bytes

ReviewRequest

Mixin to validate that a valid enterprise license exists before allowing to save the object

Properties

Name Type Description Notes
iteration UUID
note str [optional]

Example

from authentik_client.models.review_request import ReviewRequest

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

# convert the object into a dict
review_request_dict = review_request_instance.to_dict()
# create an instance of ReviewRequest from a dict
review_request_from_dict = ReviewRequest.from_dict(review_request_dict)

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