/** * 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 { CallRelationshipsFilesDataSchema } from './CallRelationshipsFilesDataSchema'; /** * File attachments shared on this call (File entities). To-many; container-owns-files. * @export * @interface CallRelationshipsFilesSchema */ export interface CallRelationshipsFilesSchema { /** * * @type {Array} * @memberof CallRelationshipsFilesSchema */ data?: Array; } /** * Check if a given object implements the CallRelationshipsFilesSchema interface. */ export declare function instanceOfCallRelationshipsFilesSchema(value: object): value is CallRelationshipsFilesSchema; export declare function CallRelationshipsFilesSchemaFromJSON(json: any): CallRelationshipsFilesSchema; export declare function CallRelationshipsFilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsFilesSchema; export declare function CallRelationshipsFilesSchemaToJSON(json: any): CallRelationshipsFilesSchema; export declare function CallRelationshipsFilesSchemaToJSONTyped(value?: CallRelationshipsFilesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsFilesSchema.d.ts.map