/** * 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. */ /** * Choose the target account before starting the lockdown flow. * @export * @interface UserAccountLockdownRequest */ export interface UserAccountLockdownRequest { /** * User to lock. If omitted, locks the current user (self-service). * @type {number} * @memberof UserAccountLockdownRequest */ user?: number | null; } /** * Check if a given object implements the UserAccountLockdownRequest interface. */ export declare function instanceOfUserAccountLockdownRequest(value: object): value is UserAccountLockdownRequest; export declare function UserAccountLockdownRequestFromJSON(json: any): UserAccountLockdownRequest; export declare function UserAccountLockdownRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAccountLockdownRequest; export declare function UserAccountLockdownRequestToJSON(json: any): UserAccountLockdownRequest; export declare function UserAccountLockdownRequestToJSONTyped(value?: UserAccountLockdownRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserAccountLockdownRequest.d.ts.map