/** * 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 AuthenticatorEmailStageRequest */ export interface AuthenticatorEmailStageRequest { /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorEmailStageRequest */ 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 AuthenticatorEmailStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ friendlyName?: string | null; /** * When enabled, global Email connection settings will be used and connection settings below will be ignored. * @type {boolean} * @memberof AuthenticatorEmailStageRequest */ useGlobalSettings?: boolean; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ host?: string; /** * * @type {number} * @memberof AuthenticatorEmailStageRequest */ port?: number; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ username?: string; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ password?: string; /** * * @type {boolean} * @memberof AuthenticatorEmailStageRequest */ useTls?: boolean; /** * * @type {boolean} * @memberof AuthenticatorEmailStageRequest */ useSsl?: boolean; /** * * @type {number} * @memberof AuthenticatorEmailStageRequest */ timeout?: number; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ fromAddress?: string; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ subject?: string; /** * Time the token sent is valid (Format: hours=3,minutes=17,seconds=300). * @type {string} * @memberof AuthenticatorEmailStageRequest */ tokenExpiry?: string; /** * * @type {string} * @memberof AuthenticatorEmailStageRequest */ template?: string; } /** * Check if a given object implements the AuthenticatorEmailStageRequest interface. */ export declare function instanceOfAuthenticatorEmailStageRequest(value: object): value is AuthenticatorEmailStageRequest; export declare function AuthenticatorEmailStageRequestFromJSON(json: any): AuthenticatorEmailStageRequest; export declare function AuthenticatorEmailStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEmailStageRequest; export declare function AuthenticatorEmailStageRequestToJSON(json: any): AuthenticatorEmailStageRequest; export declare function AuthenticatorEmailStageRequestToJSONTyped(value?: AuthenticatorEmailStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEmailStageRequest.d.ts.map