/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Event } from './Event'; /** * * @export * @interface EventsResponse */ export interface EventsResponse { /** * Opaque pagination cursor for fetching the next page of events * @type {string} * @memberof EventsResponse */ cursor?: string; /** * List of event objects * @type {Array} * @memberof EventsResponse */ data?: Array; } export declare function EventsResponseFromJSON(json: any): EventsResponse; export declare function EventsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventsResponse; export declare function EventsResponseToJSON(value?: EventsResponse | null): any;