/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { MeetingResourceSchema } from './MeetingResourceSchema'; /** * * @export * @interface MeetingSchema */ export interface MeetingSchema { /** * * @type {MeetingResourceSchema} * @memberof MeetingSchema */ data?: MeetingResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof MeetingSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof MeetingSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the MeetingSchema interface. */ export declare function instanceOfMeetingSchema(value: object): value is MeetingSchema; export declare function MeetingSchemaFromJSON(json: any): MeetingSchema; export declare function MeetingSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingSchema; export declare function MeetingSchemaToJSON(json: any): MeetingSchema; export declare function MeetingSchemaToJSONTyped(value?: MeetingSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingSchema.d.ts.map