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