/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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. */ /** * AccountLockdownStage Serializer * @export * @interface AccountLockdownStageRequest */ export interface AccountLockdownStageRequest { /** * * @type {string} * @memberof AccountLockdownStageRequest */ name: string; /** * Deactivate the user account (set is_active to False) * @type {boolean} * @memberof AccountLockdownStageRequest */ deactivateUser?: boolean; /** * Set an unusable password for the user * @type {boolean} * @memberof AccountLockdownStageRequest */ setUnusablePassword?: boolean; /** * Delete all active sessions for the user * @type {boolean} * @memberof AccountLockdownStageRequest */ deleteSessions?: boolean; /** * Revoke all tokens for the user (API, app password, recovery, verification, OAuth) * @type {boolean} * @memberof AccountLockdownStageRequest */ revokeTokens?: boolean; /** * Flow to redirect users to after self-service lockdown. This flow should not require authentication since the user's session is deleted. * @type {string} * @memberof AccountLockdownStageRequest */ selfServiceCompletionFlow?: string | null; } /** * Check if a given object implements the AccountLockdownStageRequest interface. */ export declare function instanceOfAccountLockdownStageRequest(value: object): value is AccountLockdownStageRequest; export declare function AccountLockdownStageRequestFromJSON(json: any): AccountLockdownStageRequest; export declare function AccountLockdownStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountLockdownStageRequest; export declare function AccountLockdownStageRequestToJSON(json: any): AccountLockdownStageRequest; export declare function AccountLockdownStageRequestToJSONTyped(value?: AccountLockdownStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AccountLockdownStageRequest.d.ts.map