/** * 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 { MeetingRelationshipsConversationSchemaData } from './MeetingRelationshipsConversationSchemaData'; /** * Conversation this meeting is threaded into. The post-meeting AI summary lands as a comment on this conversation. * @export * @interface MeetingRelationshipsConversationSchema */ export interface MeetingRelationshipsConversationSchema { /** * * @type {MeetingRelationshipsConversationSchemaData} * @memberof MeetingRelationshipsConversationSchema */ data?: MeetingRelationshipsConversationSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsConversationSchema interface. */ export declare function instanceOfMeetingRelationshipsConversationSchema(value: object): value is MeetingRelationshipsConversationSchema; export declare function MeetingRelationshipsConversationSchemaFromJSON(json: any): MeetingRelationshipsConversationSchema; export declare function MeetingRelationshipsConversationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsConversationSchema; export declare function MeetingRelationshipsConversationSchemaToJSON(json: any): MeetingRelationshipsConversationSchema; export declare function MeetingRelationshipsConversationSchemaToJSONTyped(value?: MeetingRelationshipsConversationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsConversationSchema.d.ts.map