Partial brand information for styling
| Name | Type | Description | Notes |
|---|---|---|---|
| matched_domain | str | ||
| branding_title | str | ||
| branding_logo | str | ||
| branding_logo_themed_urls | ThemedUrls | [readonly] | |
| branding_favicon | str | ||
| branding_favicon_themed_urls | ThemedUrls | [readonly] | |
| 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 |
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)