//#region src/model/PatchOperationType.d.ts /** * Enum PatchOperationType * @type {{ * "ADD": "ADD","REMOVE": "REMOVE","REPLACE": "REPLACE", * }} */ declare const PatchOperationTypeStatic: { "ADD": "ADD"; "REMOVE": "REMOVE"; "REPLACE": "REPLACE"; }; /** * Enum class PatchOperationType. * @enum {} * @readonly */ declare class PatchOperationType { /** * Returns a PatchOperationType enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/PatchOperationType} The enum PatchOperationType value. */ static constructFromObject(object: any): any; /** * value: "ADD" * @const */ ADD: string; /** * value: "REMOVE" * @const */ REMOVE: string; /** * value: "REPLACE" * @const */ REPLACE: string; } /** * * */ type PatchOperationType = any; //#endregion export { PatchOperationType, PatchOperationType as default, PatchOperationTypeStatic };