/** * 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 FileHandleStatus: { readonly AVAILABLE: "AVAILABLE"; readonly UNLINKED: "UNLINKED"; readonly ARCHIVED: "ARCHIVED"; }; export type FileHandleStatus = typeof FileHandleStatus[keyof typeof FileHandleStatus]; export declare function instanceOfFileHandleStatus(value: any): boolean; export declare function FileHandleStatusFromJSON(json: any): FileHandleStatus; export declare function FileHandleStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileHandleStatus; export declare function FileHandleStatusToJSON(value?: FileHandleStatus | null): any; export declare function FileHandleStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): FileHandleStatus;