/** * 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 { MeetingRelationshipsFilesDataSchema } from './MeetingRelationshipsFilesDataSchema'; /** * File attachments shared in this meeting (File entities). To-many; container-owns-files. * @export * @interface MeetingRelationshipsFilesSchema */ export interface MeetingRelationshipsFilesSchema { /** * * @type {Array} * @memberof MeetingRelationshipsFilesSchema */ data?: Array; } /** * Check if a given object implements the MeetingRelationshipsFilesSchema interface. */ export declare function instanceOfMeetingRelationshipsFilesSchema(value: object): value is MeetingRelationshipsFilesSchema; export declare function MeetingRelationshipsFilesSchemaFromJSON(json: any): MeetingRelationshipsFilesSchema; export declare function MeetingRelationshipsFilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsFilesSchema; export declare function MeetingRelationshipsFilesSchemaToJSON(json: any): MeetingRelationshipsFilesSchema; export declare function MeetingRelationshipsFilesSchemaToJSONTyped(value?: MeetingRelationshipsFilesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsFilesSchema.d.ts.map