/** * 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 { FlowSetRequest } from './FlowSetRequest'; /** * AuthenticatorEmailStage Serializer * @export * @interface PatchedAuthenticatorEmailStageRequest */ export interface PatchedAuthenticatorEmailStageRequest { /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedAuthenticatorEmailStageRequest */ flowSet?: Array; /** * Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ friendlyName?: string | null; /** * When enabled, global Email connection settings will be used and connection settings below will be ignored. * @type {boolean} * @memberof PatchedAuthenticatorEmailStageRequest */ useGlobalSettings?: boolean; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ host?: string; /** * * @type {number} * @memberof PatchedAuthenticatorEmailStageRequest */ port?: number; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ username?: string; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ password?: string; /** * * @type {boolean} * @memberof PatchedAuthenticatorEmailStageRequest */ useTls?: boolean; /** * * @type {boolean} * @memberof PatchedAuthenticatorEmailStageRequest */ useSsl?: boolean; /** * * @type {number} * @memberof PatchedAuthenticatorEmailStageRequest */ timeout?: number; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ fromAddress?: string; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ subject?: string; /** * Time the token sent is valid (Format: hours=3,minutes=17,seconds=300). * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ tokenExpiry?: string; /** * * @type {string} * @memberof PatchedAuthenticatorEmailStageRequest */ template?: string; } /** * Check if a given object implements the PatchedAuthenticatorEmailStageRequest interface. */ export declare function instanceOfPatchedAuthenticatorEmailStageRequest(value: object): value is PatchedAuthenticatorEmailStageRequest; export declare function PatchedAuthenticatorEmailStageRequestFromJSON(json: any): PatchedAuthenticatorEmailStageRequest; export declare function PatchedAuthenticatorEmailStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedAuthenticatorEmailStageRequest; export declare function PatchedAuthenticatorEmailStageRequestToJSON(json: any): PatchedAuthenticatorEmailStageRequest; export declare function PatchedAuthenticatorEmailStageRequestToJSONTyped(value?: PatchedAuthenticatorEmailStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedAuthenticatorEmailStageRequest.d.ts.map