/** * 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 { FileHandleAssociation } from './FileHandleAssociation'; /** * Batch Request for file pre-signed-URLs and/or FileHandles. * @export * @interface BatchFileRequest */ export interface BatchFileRequest { /** * Defines the files to get. * @type {Array} * @memberof BatchFileRequest */ requestedFiles?: Array; /** * Set to true to request a pre-signed URL for each file. * @type {boolean} * @memberof BatchFileRequest */ includePreSignedURLs?: boolean; /** * Set to true to request a FileHandle for each file. * @type {boolean} * @memberof BatchFileRequest */ includeFileHandles?: boolean; /** * Set to true to request a preview's pre-signed URL for each file. * @type {boolean} * @memberof BatchFileRequest */ includePreviewPreSignedURLs?: boolean; } /** * Check if a given object implements the BatchFileRequest interface. */ export declare function instanceOfBatchFileRequest(value: object): value is BatchFileRequest; export declare function BatchFileRequestFromJSON(json: any): BatchFileRequest; export declare function BatchFileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchFileRequest; export declare function BatchFileRequestToJSON(json: any): BatchFileRequest; export declare function BatchFileRequestToJSONTyped(value?: BatchFileRequest | null, ignoreDiscriminator?: boolean): any;