/** * 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. */ /** * This object is deprecated and will be removed in future versions of Synapse. * @export * @interface UploadResult */ export interface UploadResult { /** * The uplaod message * @type {string} * @memberof UploadResult */ message?: string; /** * The status of the upload. * @type {string} * @memberof UploadResult */ uploadStatus?: UploadResultUploadStatusEnum; } /** * @export */ export declare const UploadResultUploadStatusEnum: { readonly FAILED: "FAILED"; readonly SUCCESS: "SUCCESS"; }; export type UploadResultUploadStatusEnum = typeof UploadResultUploadStatusEnum[keyof typeof UploadResultUploadStatusEnum]; /** * Check if a given object implements the UploadResult interface. */ export declare function instanceOfUploadResult(value: object): value is UploadResult; export declare function UploadResultFromJSON(json: any): UploadResult; export declare function UploadResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): UploadResult; export declare function UploadResultToJSON(json: any): UploadResult; export declare function UploadResultToJSONTyped(value?: UploadResult | null, ignoreDiscriminator?: boolean): any;