/** * Audius API * * The version of the OpenAPI document: 1.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 type { Event } from './Event'; /** * * @export * @interface EventsResponse */ export interface EventsResponse { /** * * @type {Array} * @memberof EventsResponse */ data?: Array; } /** * Check if a given object implements the EventsResponse interface. */ export declare function instanceOfEventsResponse(value: object): value is EventsResponse; export declare function EventsResponseFromJSON(json: any): EventsResponse; export declare function EventsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventsResponse; export declare function EventsResponseToJSON(value?: EventsResponse | null): any;