Brand Serializer
| 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] |
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)