/** * 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 { CreateMeetingAttendeeRequestBodyData } from './CreateMeetingAttendeeRequestBodyData'; /** * * @export * @interface CreateMeetingAttendeeRequestBody */ export interface CreateMeetingAttendeeRequestBody { /** * * @type {CreateMeetingAttendeeRequestBodyData} * @memberof CreateMeetingAttendeeRequestBody */ data: CreateMeetingAttendeeRequestBodyData; } /** * Check if a given object implements the CreateMeetingAttendeeRequestBody interface. */ export declare function instanceOfCreateMeetingAttendeeRequestBody(value: object): value is CreateMeetingAttendeeRequestBody; export declare function CreateMeetingAttendeeRequestBodyFromJSON(json: any): CreateMeetingAttendeeRequestBody; export declare function CreateMeetingAttendeeRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMeetingAttendeeRequestBody; export declare function CreateMeetingAttendeeRequestBodyToJSON(json: any): CreateMeetingAttendeeRequestBody; export declare function CreateMeetingAttendeeRequestBodyToJSONTyped(value?: CreateMeetingAttendeeRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateMeetingAttendeeRequestBody.d.ts.map