/** * 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. */ /** * * @export */ export declare const UploadType: { readonly S3: "S3"; readonly GOOGLECLOUDSTORAGE: "GOOGLECLOUDSTORAGE"; readonly SFTP: "SFTP"; readonly HTTPS: "HTTPS"; readonly PROXYLOCAL: "PROXYLOCAL"; readonly NONE: "NONE"; }; export type UploadType = typeof UploadType[keyof typeof UploadType]; export declare function instanceOfUploadType(value: any): boolean; export declare function UploadTypeFromJSON(json: any): UploadType; export declare function UploadTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UploadType; export declare function UploadTypeToJSON(value?: UploadType | null): any; export declare function UploadTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UploadType;