/** * 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 { MeetingAiSessionResourceSchema } from './MeetingAiSessionResourceSchema'; /** * * @export * @interface MeetingAiSessionSchema */ export interface MeetingAiSessionSchema { /** * * @type {MeetingAiSessionResourceSchema} * @memberof MeetingAiSessionSchema */ data?: MeetingAiSessionResourceSchema; } /** * Check if a given object implements the MeetingAiSessionSchema interface. */ export declare function instanceOfMeetingAiSessionSchema(value: object): value is MeetingAiSessionSchema; export declare function MeetingAiSessionSchemaFromJSON(json: any): MeetingAiSessionSchema; export declare function MeetingAiSessionSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAiSessionSchema; export declare function MeetingAiSessionSchemaToJSON(json: any): MeetingAiSessionSchema; export declare function MeetingAiSessionSchemaToJSONTyped(value?: MeetingAiSessionSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAiSessionSchema.d.ts.map