Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 803 Bytes

File metadata and controls

30 lines (21 loc) · 803 Bytes

Cache

Generic cache stats for an object

Properties

Name Type Description Notes
count int [readonly]

Example

from authentik_client.models.cache import Cache

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

# convert the object into a dict
cache_dict = cache_instance.to_dict()
# create an instance of Cache from a dict
cache_from_dict = Cache.from_dict(cache_dict)

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