/** * 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 { Stage } from './Stage'; /** * * @export * @interface PaginatedStageList */ export interface PaginatedStageList { /** * * @type {Pagination} * @memberof PaginatedStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedStageList interface. */ export declare function instanceOfPaginatedStageList(value: object): value is PaginatedStageList; export declare function PaginatedStageListFromJSON(json: any): PaginatedStageList; export declare function PaginatedStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedStageList; export declare function PaginatedStageListToJSON(json: any): PaginatedStageList; export declare function PaginatedStageListToJSONTyped(value?: PaginatedStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedStageList.d.ts.map