/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { EventResourceSchema } from './EventResourceSchema'; /** * * @export * @interface EventsResponseDocument */ export interface EventsResponseDocument { /** * * @type {Array} * @memberof EventsResponseDocument */ data?: Array; /** * * @type {object} * @memberof EventsResponseDocument */ meta?: object; /** * * @type {object} * @memberof EventsResponseDocument */ links?: object; } /** * Check if a given object implements the EventsResponseDocument interface. */ export declare function instanceOfEventsResponseDocument(value: object): value is EventsResponseDocument; export declare function EventsResponseDocumentFromJSON(json: any): EventsResponseDocument; export declare function EventsResponseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventsResponseDocument; export declare function EventsResponseDocumentToJSON(json: any): EventsResponseDocument; export declare function EventsResponseDocumentToJSONTyped(value?: EventsResponseDocument | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventsResponseDocument.d.ts.map