/** * 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. */ /** * 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 declare function instanceOfBrand(value: object): value is Brand; export declare function BrandFromJSON(json: any): Brand; export declare function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Brand; export declare function BrandToJSON(json: any): Brand; export declare function BrandToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Brand.d.ts.map