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