/** * 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 FileDownloadCode: { readonly NOT_FOUND: "NOT_FOUND"; readonly UNAUTHORIZED: "UNAUTHORIZED"; readonly DUPLICATE: "DUPLICATE"; readonly EXCEEDS_SIZE_LIMIT: "EXCEEDS_SIZE_LIMIT"; readonly UNKNOWN_ERROR: "UNKNOWN_ERROR"; }; export type FileDownloadCode = typeof FileDownloadCode[keyof typeof FileDownloadCode]; export declare function instanceOfFileDownloadCode(value: any): boolean; export declare function FileDownloadCodeFromJSON(json: any): FileDownloadCode; export declare function FileDownloadCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileDownloadCode; export declare function FileDownloadCodeToJSON(value?: FileDownloadCode | null): any; export declare function FileDownloadCodeToJSONTyped(value: any, ignoreDiscriminator: boolean): FileDownloadCode;