Mixin to validate that a valid enterprise license exists before allowing to save the object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| content_type | ContentTypeEnum | ||
| object_id | str | [readonly] | |
| object_verbose | str | [readonly] | |
| object_admin_url | str | [readonly] | |
| state | LifecycleIterationStateEnum | [readonly] | |
| opened_on | datetime | [readonly] | |
| grace_period_end | datetime | [readonly] | |
| next_review_date | datetime | [readonly] | |
| reviews | List[Review] | [readonly] | |
| user_can_review | bool | [readonly] | |
| reviewer_groups | List[ReviewerGroup] | [readonly] | |
| min_reviewers | int | [readonly] | |
| reviewers | List[ReviewerUser] | [readonly] |
from authentik_client.models.lifecycle_iteration import LifecycleIteration
# TODO update the JSON string below
json = "{}"
# create an instance of LifecycleIteration from a JSON string
lifecycle_iteration_instance = LifecycleIteration.from_json(json)
# print the JSON string representation of the object
print(LifecycleIteration.to_json())
# convert the object into a dict
lifecycle_iteration_dict = lifecycle_iteration_instance.to_dict()
# create an instance of LifecycleIteration from a dict
lifecycle_iteration_from_dict = LifecycleIteration.from_dict(lifecycle_iteration_dict)