/** * 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 { FlowSet } from './FlowSet'; /** * AuthenticatorEmailStage Serializer * @export * @interface AuthenticatorEmailStage */ export interface AuthenticatorEmailStage { /** * * @type {string} * @memberof AuthenticatorEmailStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorEmailStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorEmailStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorEmailStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorEmailStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorEmailStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorEmailStage */ 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 AuthenticatorEmailStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorEmailStage */ friendlyName?: string | null; /** * When enabled, global Email connection settings will be used and connection settings below will be ignored. * @type {boolean} * @memberof AuthenticatorEmailStage */ useGlobalSettings?: boolean; /** * * @type {string} * @memberof AuthenticatorEmailStage */ host?: string; /** * * @type {number} * @memberof AuthenticatorEmailStage */ port?: number; /** * * @type {string} * @memberof AuthenticatorEmailStage */ username?: string; /** * * @type {string} * @memberof AuthenticatorEmailStage */ password?: string; /** * * @type {boolean} * @memberof AuthenticatorEmailStage */ useTls?: boolean; /** * * @type {boolean} * @memberof AuthenticatorEmailStage */ useSsl?: boolean; /** * * @type {number} * @memberof AuthenticatorEmailStage */ timeout?: number; /** * * @type {string} * @memberof AuthenticatorEmailStage */ fromAddress?: string; /** * * @type {string} * @memberof AuthenticatorEmailStage */ subject?: string; /** * Time the token sent is valid (Format: hours=3,minutes=17,seconds=300). * @type {string} * @memberof AuthenticatorEmailStage */ tokenExpiry?: string; /** * * @type {string} * @memberof AuthenticatorEmailStage */ template?: string; } /** * Check if a given object implements the AuthenticatorEmailStage interface. */ export declare function instanceOfAuthenticatorEmailStage(value: object): value is AuthenticatorEmailStage; export declare function AuthenticatorEmailStageFromJSON(json: any): AuthenticatorEmailStage; export declare function AuthenticatorEmailStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEmailStage; export declare function AuthenticatorEmailStageToJSON(json: any): AuthenticatorEmailStage; export declare function AuthenticatorEmailStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEmailStage.d.ts.map