/** * 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 StateEnum: { readonly WAITING_FOR_SUBMISSION: "WAITING_FOR_SUBMISSION"; readonly SUBMITTED_WAITING_FOR_REVIEW: "SUBMITTED_WAITING_FOR_REVIEW"; readonly ACCEPTED: "ACCEPTED"; readonly REJECTED: "REJECTED"; }; export type StateEnum = typeof StateEnum[keyof typeof StateEnum]; export declare function instanceOfStateEnum(value: any): boolean; export declare function StateEnumFromJSON(json: any): StateEnum; export declare function StateEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): StateEnum; export declare function StateEnumToJSON(value?: StateEnum | null): any; export declare function StateEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): StateEnum;