Mixin to validate that a valid enterprise license exists before allowing to save the object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| name | str | ||
| content_type | ContentTypeEnum | ||
| object_id | str | [optional] | |
| interval | str | [optional] | |
| grace_period | str | [optional] | |
| reviewer_groups | List[UUID] | [optional] | |
| reviewer_groups_obj | List[ReviewerGroup] | [readonly] | |
| min_reviewers | int | [optional] | |
| min_reviewers_is_per_group | bool | [optional] | |
| reviewers | List[UUID] | ||
| reviewers_obj | List[ReviewerUser] | [readonly] | |
| notification_transports | List[UUID] | Select which transports should be used to notify the reviewers. If none are selected, the notification will only be shown in the authentik UI. | [optional] |
| target_verbose | str | [readonly] |
from authentik_client.models.lifecycle_rule import LifecycleRule
# TODO update the JSON string below
json = "{}"
# create an instance of LifecycleRule from a JSON string
lifecycle_rule_instance = LifecycleRule.from_json(json)
# print the JSON string representation of the object
print(LifecycleRule.to_json())
# convert the object into a dict
lifecycle_rule_dict = lifecycle_rule_instance.to_dict()
# create an instance of LifecycleRule from a dict
lifecycle_rule_from_dict = LifecycleRule.from_dict(lifecycle_rule_dict)