/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; /** * Brand Serializer * @export * @interface Brand */ export interface Brand { /** * * @type {string} * @memberof Brand */ readonly brandUuid: string; /** * Domain that activates this brand. Can be a superset, i.e. `a.b` for `aa.b` and `ba.b` * @type {string} * @memberof Brand */ domain: string; /** * * @type {boolean} * @memberof Brand */ _default?: boolean; /** * * @type {string} * @memberof Brand */ brandingTitle?: string; /** * * @type {string} * @memberof Brand */ brandingLogo?: string; /** * * @type {string} * @memberof Brand */ brandingFavicon?: string; /** * * @type {string} * @memberof Brand */ brandingCustomCss?: string; /** * * @type {string} * @memberof Brand */ brandingDefaultFlowBackground?: string; /** * * @type {string} * @memberof Brand */ flowAuthentication?: string | null; /** * * @type {string} * @memberof Brand */ flowInvalidation?: string | null; /** * * @type {string} * @memberof Brand */ flowRecovery?: string | null; /** * * @type {string} * @memberof Brand */ flowUnenrollment?: string | null; /** * * @type {string} * @memberof Brand */ flowUserSettings?: string | null; /** * * @type {string} * @memberof Brand */ flowDeviceCode?: string | null; /** * When set, external users will be redirected to this application after authenticating. * @type {string} * @memberof Brand */ defaultApplication?: string | null; /** * Web Certificate used by the authentik Core webserver. * @type {string} * @memberof Brand */ webCertificate?: string | null; /** * Certificates used for client authentication. * @type {Array} * @memberof Brand */ clientCertificates?: Array; /** * * @type {{ [key: string]: any; }} * @memberof Brand */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the Brand interface. */ export function instanceOfBrand(value: object): value is Brand { if (!('brandUuid' in value) || value['brandUuid'] === undefined) return false; if (!('domain' in value) || value['domain'] === undefined) return false; return true; } export function BrandFromJSON(json: any): Brand { return BrandFromJSONTyped(json, false); } export function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Brand { if (json == null) { return json; } return { 'brandUuid': json['brand_uuid'], 'domain': json['domain'], '_default': json['default'] == null ? undefined : json['default'], 'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'], 'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'], 'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'], 'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'], 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'], 'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'], 'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'], 'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'], 'flowUnenrollment': json['flow_unenrollment'] == null ? undefined : json['flow_unenrollment'], 'flowUserSettings': json['flow_user_settings'] == null ? undefined : json['flow_user_settings'], 'flowDeviceCode': json['flow_device_code'] == null ? undefined : json['flow_device_code'], 'defaultApplication': json['default_application'] == null ? undefined : json['default_application'], 'webCertificate': json['web_certificate'] == null ? undefined : json['web_certificate'], 'clientCertificates': json['client_certificates'] == null ? undefined : json['client_certificates'], 'attributes': json['attributes'] == null ? undefined : json['attributes'], }; } export function BrandToJSON(json: any): Brand { return BrandToJSONTyped(json, false); } export function BrandToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'domain': value['domain'], 'default': value['_default'], 'branding_title': value['brandingTitle'], 'branding_logo': value['brandingLogo'], 'branding_favicon': value['brandingFavicon'], 'branding_custom_css': value['brandingCustomCss'], 'branding_default_flow_background': value['brandingDefaultFlowBackground'], 'flow_authentication': value['flowAuthentication'], 'flow_invalidation': value['flowInvalidation'], 'flow_recovery': value['flowRecovery'], 'flow_unenrollment': value['flowUnenrollment'], 'flow_user_settings': value['flowUserSettings'], 'flow_device_code': value['flowDeviceCode'], 'default_application': value['defaultApplication'], 'web_certificate': value['webCertificate'], 'client_certificates': value['clientCertificates'], 'attributes': value['attributes'], }; }