Mixin to validate that a valid enterprise license exists before allowing to save the object
| Name | Type | Description | Notes |
|---|---|---|---|
| iteration | UUID | ||
| note | str | [optional] |
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)