/** * 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 { BackendsEnum } from './BackendsEnum'; import type { FlowSetRequest } from './FlowSetRequest'; /** * PasswordStage Serializer * @export * @interface PasswordStageRequest */ export interface PasswordStageRequest { /** * * @type {string} * @memberof PasswordStageRequest */ name: string; /** * * @type {Array} * @memberof PasswordStageRequest */ flowSet?: Array; /** * Selection of backends to test the password against. * @type {Array} * @memberof PasswordStageRequest */ backends: 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 PasswordStageRequest */ configureFlow?: string | null; /** * How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage. * @type {number} * @memberof PasswordStageRequest */ failedAttemptsBeforeCancel?: number; /** * When enabled, provides a 'show password' button with the password input field. * @type {boolean} * @memberof PasswordStageRequest */ allowShowPassword?: boolean; } /** * Check if a given object implements the PasswordStageRequest interface. */ export declare function instanceOfPasswordStageRequest(value: object): value is PasswordStageRequest; export declare function PasswordStageRequestFromJSON(json: any): PasswordStageRequest; export declare function PasswordStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasswordStageRequest; export declare function PasswordStageRequestToJSON(json: any): PasswordStageRequest; export declare function PasswordStageRequestToJSONTyped(value?: PasswordStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PasswordStageRequest.d.ts.map