Mixin to validate that a valid enterprise license exists before allowing to save the object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| iteration | UUID | ||
| reviewer | ReviewerUser | [readonly] | |
| timestamp | datetime | [readonly] | |
| note | str | [optional] |
from authentik_client.models.review import Review
# TODO update the JSON string below
json = "{}"
# create an instance of Review from a JSON string
review_instance = Review.from_json(json)
# print the JSON string representation of the object
print(Review.to_json())
# convert the object into a dict
review_dict = review_instance.to_dict()
# create an instance of Review from a dict
review_from_dict = Review.from_dict(review_dict)