Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.88 KB

File metadata and controls

47 lines (38 loc) · 1.88 KB

Brand

Brand Serializer

Properties

Name Type Description Notes
brand_uuid UUID [readonly]
domain str Domain that activates this brand. Can be a superset, i.e. `a.b` for `aa.b` and `ba.b`
default bool [optional]
branding_title str [optional]
branding_logo str [optional]
branding_favicon str [optional]
branding_custom_css str [optional]
branding_default_flow_background str [optional]
flow_authentication UUID [optional]
flow_invalidation UUID [optional]
flow_recovery UUID [optional]
flow_unenrollment UUID [optional]
flow_user_settings UUID [optional]
flow_device_code UUID [optional]
default_application UUID When set, external users will be redirected to this application after authenticating. [optional]
web_certificate UUID Web Certificate used by the authentik Core webserver. [optional]
client_certificates List[UUID] Certificates used for client authentication. [optional]
attributes Dict[str, object] [optional]

Example

from authentik_client.models.brand import Brand

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

# convert the object into a dict
brand_dict = brand_instance.to_dict()
# create an instance of Brand from a dict
brand_from_dict = Brand.from_dict(brand_dict)

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