/** * 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 MeetingAttendeeSchema */ export interface MeetingAttendeeSchema { /** * * @type {MeetingAttendeeResourceSchema} * @memberof MeetingAttendeeSchema */ data?: MeetingAttendeeResourceSchema; } /** * Check if a given object implements the MeetingAttendeeSchema interface. */ export declare function instanceOfMeetingAttendeeSchema(value: object): value is MeetingAttendeeSchema; export declare function MeetingAttendeeSchemaFromJSON(json: any): MeetingAttendeeSchema; export declare function MeetingAttendeeSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeeSchema; export declare function MeetingAttendeeSchemaToJSON(json: any): MeetingAttendeeSchema; export declare function MeetingAttendeeSchemaToJSONTyped(value?: MeetingAttendeeSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeeSchema.d.ts.map