/** * 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 { FileHandleCopyRequest } from './FileHandleCopyRequest'; /** * Batch Request for copying FileHandles. * @export * @interface BatchFileHandleCopyRequest */ export interface BatchFileHandleCopyRequest { /** * Defines the copy requests. * @type {Array} * @memberof BatchFileHandleCopyRequest */ copyRequests?: Array; } /** * Check if a given object implements the BatchFileHandleCopyRequest interface. */ export declare function instanceOfBatchFileHandleCopyRequest(value: object): value is BatchFileHandleCopyRequest; export declare function BatchFileHandleCopyRequestFromJSON(json: any): BatchFileHandleCopyRequest; export declare function BatchFileHandleCopyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchFileHandleCopyRequest; export declare function BatchFileHandleCopyRequestToJSON(json: any): BatchFileHandleCopyRequest; export declare function BatchFileHandleCopyRequestToJSONTyped(value?: BatchFileHandleCopyRequest | null, ignoreDiscriminator?: boolean): any;