/** * 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 BrandRequest */ export interface BrandRequest { /** * Domain that activates this brand. Can be a superset, i.e. `a.b` for `aa.b` and `ba.b` * @type {string} * @memberof BrandRequest */ domain: string; /** * * @type {boolean} * @memberof BrandRequest */ _default?: boolean; /** * * @type {string} * @memberof BrandRequest */ brandingTitle?: string; /** * * @type {string} * @memberof BrandRequest */ brandingLogo?: string; /** * * @type {string} * @memberof BrandRequest */ brandingFavicon?: string; /** * * @type {string} * @memberof BrandRequest */ brandingCustomCss?: string; /** * * @type {string} * @memberof BrandRequest */ brandingDefaultFlowBackground?: string; /** * * @type {string} * @memberof BrandRequest */ flowAuthentication?: string | null; /** * * @type {string} * @memberof BrandRequest */ flowInvalidation?: string | null; /** * * @type {string} * @memberof BrandRequest */ flowRecovery?: string | null; /** * * @type {string} * @memberof BrandRequest */ flowUnenrollment?: string | null; /** * * @type {string} * @memberof BrandRequest */ flowUserSettings?: string | null; /** * * @type {string} * @memberof BrandRequest */ flowDeviceCode?: string | null; /** * When set, external users will be redirected to this application after authenticating. * @type {string} * @memberof BrandRequest */ defaultApplication?: string | null; /** * Web Certificate used by the authentik Core webserver. * @type {string} * @memberof BrandRequest */ webCertificate?: string | null; /** * Certificates used for client authentication. * @type {Array} * @memberof BrandRequest */ clientCertificates?: Array; /** * * @type {{ [key: string]: any; }} * @memberof BrandRequest */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the BrandRequest interface. */ export declare function instanceOfBrandRequest(value: object): value is BrandRequest; export declare function BrandRequestFromJSON(json: any): BrandRequest; export declare function BrandRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BrandRequest; export declare function BrandRequestToJSON(json: any): BrandRequest; export declare function BrandRequestToJSONTyped(value?: BrandRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BrandRequest.d.ts.map