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