/** * 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 { FileResult } from './FileResult'; /** * Batch of results for file pre-signed-URLs and/or FileHandles requests. * @export * @interface BatchFileResult */ export interface BatchFileResult { /** * Defines the files to get. * @type {Array} * @memberof BatchFileResult */ requestedFiles?: Array; } /** * Check if a given object implements the BatchFileResult interface. */ export declare function instanceOfBatchFileResult(value: object): value is BatchFileResult; export declare function BatchFileResultFromJSON(json: any): BatchFileResult; export declare function BatchFileResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchFileResult; export declare function BatchFileResultToJSON(json: any): BatchFileResult; export declare function BatchFileResultToJSONTyped(value?: BatchFileResult | null, ignoreDiscriminator?: boolean): any;