Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.04 KB

File metadata and controls

46 lines (37 loc) · 2.04 KB

PatchedBrandRequest

Brand Serializer

Properties

Name Type Description Notes
domain str Domain that activates this brand. Can be a superset, i.e. `a.b` for `aa.b` and `ba.b` [optional]
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.patched_brand_request import PatchedBrandRequest

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

# convert the object into a dict
patched_brand_request_dict = patched_brand_request_instance.to_dict()
# create an instance of PatchedBrandRequest from a dict
patched_brand_request_from_dict = PatchedBrandRequest.from_dict(patched_brand_request_dict)

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