/** * 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 SubmissionState: { readonly SUBMITTED: "SUBMITTED"; readonly APPROVED: "APPROVED"; readonly REJECTED: "REJECTED"; readonly CANCELLED: "CANCELLED"; }; export type SubmissionState = typeof SubmissionState[keyof typeof SubmissionState]; export declare function instanceOfSubmissionState(value: any): boolean; export declare function SubmissionStateFromJSON(json: any): SubmissionState; export declare function SubmissionStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionState; export declare function SubmissionStateToJSON(value?: SubmissionState | null): any; export declare function SubmissionStateToJSONTyped(value: any, ignoreDiscriminator: boolean): SubmissionState;