/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { FileHandleCopyResult } from './FileHandleCopyResult'; /** * Batch Result for copying FileHandles. * @export * @interface BatchFileHandleCopyResult */ export interface BatchFileHandleCopyResult { /** * The results of each individual requests. * @type {Array} * @memberof BatchFileHandleCopyResult */ copyResults?: Array; } /** * Check if a given object implements the BatchFileHandleCopyResult interface. */ export declare function instanceOfBatchFileHandleCopyResult(value: object): value is BatchFileHandleCopyResult; export declare function BatchFileHandleCopyResultFromJSON(json: any): BatchFileHandleCopyResult; export declare function BatchFileHandleCopyResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchFileHandleCopyResult; export declare function BatchFileHandleCopyResultToJSON(json: any): BatchFileHandleCopyResult; export declare function BatchFileHandleCopyResultToJSONTyped(value?: BatchFileHandleCopyResult | null, ignoreDiscriminator?: boolean): any;