/** * 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. */ import type { Pagination } from './Pagination'; import type { AccountLockdownStage } from './AccountLockdownStage'; /** * * @export * @interface PaginatedAccountLockdownStageList */ export interface PaginatedAccountLockdownStageList { /** * * @type {Pagination} * @memberof PaginatedAccountLockdownStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedAccountLockdownStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedAccountLockdownStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedAccountLockdownStageList interface. */ export declare function instanceOfPaginatedAccountLockdownStageList(value: object): value is PaginatedAccountLockdownStageList; export declare function PaginatedAccountLockdownStageListFromJSON(json: any): PaginatedAccountLockdownStageList; export declare function PaginatedAccountLockdownStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAccountLockdownStageList; export declare function PaginatedAccountLockdownStageListToJSON(json: any): PaginatedAccountLockdownStageList; export declare function PaginatedAccountLockdownStageListToJSONTyped(value?: PaginatedAccountLockdownStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedAccountLockdownStageList.d.ts.map