/** * 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 { MeetingAttendeeResourceSchema } from './MeetingAttendeeResourceSchema'; /** * * @export * @interface MeetingAttendeesSchema */ export interface MeetingAttendeesSchema { /** * * @type {Array} * @memberof MeetingAttendeesSchema */ data?: Array; } /** * Check if a given object implements the MeetingAttendeesSchema interface. */ export declare function instanceOfMeetingAttendeesSchema(value: object): value is MeetingAttendeesSchema; export declare function MeetingAttendeesSchemaFromJSON(json: any): MeetingAttendeesSchema; export declare function MeetingAttendeesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeesSchema; export declare function MeetingAttendeesSchemaToJSON(json: any): MeetingAttendeesSchema; export declare function MeetingAttendeesSchemaToJSONTyped(value?: MeetingAttendeesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeesSchema.d.ts.map