/** * 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 AddPartState: { readonly ADD_SUCCESS: "ADD_SUCCESS"; readonly ADD_FAILED: "ADD_FAILED"; }; export type AddPartState = typeof AddPartState[keyof typeof AddPartState]; export declare function instanceOfAddPartState(value: any): boolean; export declare function AddPartStateFromJSON(json: any): AddPartState; export declare function AddPartStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddPartState; export declare function AddPartStateToJSON(value?: AddPartState | null): any; export declare function AddPartStateToJSONTyped(value: any, ignoreDiscriminator: boolean): AddPartState;