/** * 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 { MeetingTranscriptionSchemaData } from './MeetingTranscriptionSchemaData'; /** * * @export * @interface MeetingTranscriptionSchema */ export interface MeetingTranscriptionSchema { /** * * @type {MeetingTranscriptionSchemaData} * @memberof MeetingTranscriptionSchema */ data?: MeetingTranscriptionSchemaData; } /** * Check if a given object implements the MeetingTranscriptionSchema interface. */ export declare function instanceOfMeetingTranscriptionSchema(value: object): value is MeetingTranscriptionSchema; export declare function MeetingTranscriptionSchemaFromJSON(json: any): MeetingTranscriptionSchema; export declare function MeetingTranscriptionSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingTranscriptionSchema; export declare function MeetingTranscriptionSchemaToJSON(json: any): MeetingTranscriptionSchema; export declare function MeetingTranscriptionSchemaToJSONTyped(value?: MeetingTranscriptionSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingTranscriptionSchema.d.ts.map