Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.03 KB

File metadata and controls

34 lines (25 loc) · 1.03 KB

Review

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

Properties

Name Type Description Notes
id UUID [readonly]
iteration UUID
reviewer ReviewerUser [readonly]
timestamp datetime [readonly]
note str [optional]

Example

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)

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