/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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 PatchedAccountLockdownStageRequest */ export interface PatchedAccountLockdownStageRequest { /** * * @type {string} * @memberof PatchedAccountLockdownStageRequest */ name?: string; /** * Deactivate the user account (set is_active to False) * @type {boolean} * @memberof PatchedAccountLockdownStageRequest */ deactivateUser?: boolean; /** * Set an unusable password for the user * @type {boolean} * @memberof PatchedAccountLockdownStageRequest */ setUnusablePassword?: boolean; /** * Delete all active sessions for the user * @type {boolean} * @memberof PatchedAccountLockdownStageRequest */ deleteSessions?: boolean; /** * Revoke all tokens for the user (API, app password, recovery, verification, OAuth) * @type {boolean} * @memberof PatchedAccountLockdownStageRequest */ 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 PatchedAccountLockdownStageRequest */ selfServiceCompletionFlow?: string | null; } /** * Check if a given object implements the PatchedAccountLockdownStageRequest interface. */ export declare function instanceOfPatchedAccountLockdownStageRequest(value: object): value is PatchedAccountLockdownStageRequest; export declare function PatchedAccountLockdownStageRequestFromJSON(json: any): PatchedAccountLockdownStageRequest; export declare function PatchedAccountLockdownStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedAccountLockdownStageRequest; export declare function PatchedAccountLockdownStageRequestToJSON(json: any): PatchedAccountLockdownStageRequest; export declare function PatchedAccountLockdownStageRequestToJSONTyped(value?: PatchedAccountLockdownStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedAccountLockdownStageRequest.d.ts.map