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