Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.56 KB

File metadata and controls

44 lines (35 loc) · 1.56 KB

CurrentBrand

Partial brand information for styling

Properties

Name Type Description Notes
matched_domain str
branding_title str
branding_logo str
branding_favicon str
branding_custom_css str
ui_footer_links List[FooterLink] [readonly]
ui_theme UiThemeEnum [readonly]
flow_authentication str [optional]
flow_invalidation str [optional]
flow_recovery str [optional]
flow_unenrollment str [optional]
flow_user_settings str [optional]
flow_device_code str [optional]
default_locale str [readonly]
flags CurrentBrandFlags

Example

from authentik_client.models.current_brand import CurrentBrand

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

# convert the object into a dict
current_brand_dict = current_brand_instance.to_dict()
# create an instance of CurrentBrand from a dict
current_brand_from_dict = CurrentBrand.from_dict(current_brand_dict)

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