/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { EndpointStage } from './EndpointStage'; /** * * @export * @interface PaginatedEndpointStageList */ export interface PaginatedEndpointStageList { /** * * @type {Pagination} * @memberof PaginatedEndpointStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedEndpointStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedEndpointStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedEndpointStageList interface. */ export declare function instanceOfPaginatedEndpointStageList(value: object): value is PaginatedEndpointStageList; export declare function PaginatedEndpointStageListFromJSON(json: any): PaginatedEndpointStageList; export declare function PaginatedEndpointStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedEndpointStageList; export declare function PaginatedEndpointStageListToJSON(json: any): PaginatedEndpointStageList; export declare function PaginatedEndpointStageListToJSONTyped(value?: PaginatedEndpointStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedEndpointStageList.d.ts.map