/** * 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 type { UiThemeEnum } from './UiThemeEnum'; import type { FooterLink } from './FooterLink'; /** * Partial brand information for styling * @export * @interface CurrentBrand */ export interface CurrentBrand { /** * * @type {string} * @memberof CurrentBrand */ matchedDomain: string; /** * * @type {string} * @memberof CurrentBrand */ brandingTitle: string; /** * * @type {string} * @memberof CurrentBrand */ brandingLogo: string; /** * * @type {string} * @memberof CurrentBrand */ brandingFavicon: string; /** * * @type {string} * @memberof CurrentBrand */ brandingCustomCss: string; /** * * @type {Array} * @memberof CurrentBrand */ readonly uiFooterLinks: Array; /** * * @type {UiThemeEnum} * @memberof CurrentBrand */ readonly uiTheme: UiThemeEnum; /** * * @type {string} * @memberof CurrentBrand */ flowAuthentication?: string; /** * * @type {string} * @memberof CurrentBrand */ flowInvalidation?: string; /** * * @type {string} * @memberof CurrentBrand */ flowRecovery?: string; /** * * @type {string} * @memberof CurrentBrand */ flowUnenrollment?: string; /** * * @type {string} * @memberof CurrentBrand */ flowUserSettings?: string; /** * * @type {string} * @memberof CurrentBrand */ flowDeviceCode?: string; /** * * @type {string} * @memberof CurrentBrand */ readonly defaultLocale: string; } /** * Check if a given object implements the CurrentBrand interface. */ export declare function instanceOfCurrentBrand(value: object): value is CurrentBrand; export declare function CurrentBrandFromJSON(json: any): CurrentBrand; export declare function CurrentBrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrentBrand; export declare function CurrentBrandToJSON(json: any): CurrentBrand; export declare function CurrentBrandToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CurrentBrand.d.ts.map