| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | Pagination | ||
| results | List[LifecycleRule] | ||
| autocomplete | Dict[str, object] |
from authentik_client.models.paginated_lifecycle_rule_list import PaginatedLifecycleRuleList
# TODO update the JSON string below
json = "{}"
# create an instance of PaginatedLifecycleRuleList from a JSON string
paginated_lifecycle_rule_list_instance = PaginatedLifecycleRuleList.from_json(json)
# print the JSON string representation of the object
print(PaginatedLifecycleRuleList.to_json())
# convert the object into a dict
paginated_lifecycle_rule_list_dict = paginated_lifecycle_rule_list_instance.to_dict()
# create an instance of PaginatedLifecycleRuleList from a dict
paginated_lifecycle_rule_list_from_dict = PaginatedLifecycleRuleList.from_dict(paginated_lifecycle_rule_list_dict)