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