/** * 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 EventResponseDocument */ export interface EventResponseDocument { /** * * @type {EventResourceSchema} * @memberof EventResponseDocument */ data?: EventResourceSchema; } /** * Check if a given object implements the EventResponseDocument interface. */ export declare function instanceOfEventResponseDocument(value: object): value is EventResponseDocument; export declare function EventResponseDocumentFromJSON(json: any): EventResponseDocument; export declare function EventResponseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventResponseDocument; export declare function EventResponseDocumentToJSON(json: any): EventResponseDocument; export declare function EventResponseDocumentToJSONTyped(value?: EventResponseDocument | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventResponseDocument.d.ts.map