/** * 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 AsynchJobState: { readonly PROCESSING: "PROCESSING"; readonly FAILED: "FAILED"; readonly COMPLETE: "COMPLETE"; }; export type AsynchJobState = typeof AsynchJobState[keyof typeof AsynchJobState]; export declare function instanceOfAsynchJobState(value: any): boolean; export declare function AsynchJobStateFromJSON(json: any): AsynchJobState; export declare function AsynchJobStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsynchJobState; export declare function AsynchJobStateToJSON(value?: AsynchJobState | null): any; export declare function AsynchJobStateToJSONTyped(value: any, ignoreDiscriminator: boolean): AsynchJobState;