/** * 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 OnMatchFailure: { readonly SET_NULL: "SET_NULL"; readonly SET_UNDEFINED: "SET_UNDEFINED"; readonly SKIP_UPDATE: "SKIP_UPDATE"; }; export type OnMatchFailure = typeof OnMatchFailure[keyof typeof OnMatchFailure]; export declare function instanceOfOnMatchFailure(value: any): boolean; export declare function OnMatchFailureFromJSON(json: any): OnMatchFailure; export declare function OnMatchFailureFromJSONTyped(json: any, ignoreDiscriminator: boolean): OnMatchFailure; export declare function OnMatchFailureToJSON(value?: OnMatchFailure | null): any; export declare function OnMatchFailureToJSONTyped(value: any, ignoreDiscriminator: boolean): OnMatchFailure;