Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

File metadata and controls

30 lines (21 loc) · 1.14 KB

LifecycleIterationRequest

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

Properties

Name Type Description Notes
content_type ContentTypeEnum

Example

from authentik_client.models.lifecycle_iteration_request import LifecycleIterationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of LifecycleIterationRequest from a JSON string
lifecycle_iteration_request_instance = LifecycleIterationRequest.from_json(json)
# print the JSON string representation of the object
print(LifecycleIterationRequest.to_json())

# convert the object into a dict
lifecycle_iteration_request_dict = lifecycle_iteration_request_instance.to_dict()
# create an instance of LifecycleIterationRequest from a dict
lifecycle_iteration_request_from_dict = LifecycleIterationRequest.from_dict(lifecycle_iteration_request_dict)

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