/** * 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 FileDownloadStatus: { readonly SUCCESS: "SUCCESS"; readonly FAILURE: "FAILURE"; }; export type FileDownloadStatus = typeof FileDownloadStatus[keyof typeof FileDownloadStatus]; export declare function instanceOfFileDownloadStatus(value: any): boolean; export declare function FileDownloadStatusFromJSON(json: any): FileDownloadStatus; export declare function FileDownloadStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileDownloadStatus; export declare function FileDownloadStatusToJSON(value?: FileDownloadStatus | null): any; export declare function FileDownloadStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): FileDownloadStatus;