Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.04 KB

File metadata and controls

34 lines (25 loc) · 1.04 KB

Config

Serialize authentik Config into DRF Object

Properties

Name Type Description Notes
error_reporting ErrorReportingConfig
capabilities List[CapabilitiesEnum]
cache_timeout int
cache_timeout_flows int
cache_timeout_policies int

Example

from authentik_client.models.config import Config

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

# convert the object into a dict
config_dict = config_instance.to_dict()
# create an instance of Config from a dict
config_from_dict = Config.from_dict(config_dict)

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