/** * 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 { GoogleCloudFileHandle } from './GoogleCloudFileHandle'; import type { S3FileHandle } from './S3FileHandle'; /** * @type CloudProviderFileHandleInterface * Defines the common fields of FileHandles that are uploaded to cloud providers such as AWS S3 and Google Cloud Storage. * @export */ export type CloudProviderFileHandleInterface = { concreteType: 'org.sagebionetworks.repo.model.file.GoogleCloudFileHandle'; } & GoogleCloudFileHandle | { concreteType: 'org.sagebionetworks.repo.model.file.S3FileHandle'; } & S3FileHandle; export declare function CloudProviderFileHandleInterfaceFromJSON(json: any): CloudProviderFileHandleInterface; export declare function CloudProviderFileHandleInterfaceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudProviderFileHandleInterface; export declare function CloudProviderFileHandleInterfaceToJSON(json: any): any; export declare function CloudProviderFileHandleInterfaceToJSONTyped(value?: CloudProviderFileHandleInterface | null, ignoreDiscriminator?: boolean): any;