/** * 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 OnMissingValue: { readonly SET_NULL: "SET_NULL"; readonly SET_UNDEFINED: "SET_UNDEFINED"; readonly SKIP_UPDATE: "SKIP_UPDATE"; readonly USE_EMPTY_STRING: "USE_EMPTY_STRING"; }; export type OnMissingValue = typeof OnMissingValue[keyof typeof OnMissingValue]; export declare function instanceOfOnMissingValue(value: any): boolean; export declare function OnMissingValueFromJSON(json: any): OnMissingValue; export declare function OnMissingValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): OnMissingValue; export declare function OnMissingValueToJSON(value?: OnMissingValue | null): any; export declare function OnMissingValueToJSONTyped(value: any, ignoreDiscriminator: boolean): OnMissingValue;