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