/** * 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 EntityUpdateFailureCode: { readonly NOT_FOUND: "NOT_FOUND"; readonly UNAUTHORIZED: "UNAUTHORIZED"; readonly CONCURRENT_UPDATE: "CONCURRENT_UPDATE"; readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT"; readonly UNKNOWN: "UNKNOWN"; }; export type EntityUpdateFailureCode = typeof EntityUpdateFailureCode[keyof typeof EntityUpdateFailureCode]; export declare function instanceOfEntityUpdateFailureCode(value: any): boolean; export declare function EntityUpdateFailureCodeFromJSON(json: any): EntityUpdateFailureCode; export declare function EntityUpdateFailureCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityUpdateFailureCode; export declare function EntityUpdateFailureCodeToJSON(value?: EntityUpdateFailureCode | null): any; export declare function EntityUpdateFailureCodeToJSONTyped(value: any, ignoreDiscriminator: boolean): EntityUpdateFailureCode;