import "../ApiClient-fBZ10h6n.mjs"; import "../AttributeReference-BfCyKZ1I.mjs"; import "../ValuePathExpression-DL6K1L9B.mjs"; import { t as PatchOperationPath_default } from "../PatchOperationPath-9L1igBWj.mjs"; import { t as PatchOperationType } from "../PatchOperationType-DFRG4X2E.mjs"; //#region src/model/PatchOperation.d.ts type IPatchOperation = { operation: PatchOperationType; path: PatchOperationPath_default; value: any; }; /** * @typedef {Object} IPatchOperation * @property {PatchOperationType} operation * @property {PatchOperationPath} path * @property {Object} value */ /** * The PatchOperation model module. * @module model/PatchOperation * @type {IPatchOperation} */ declare class PatchOperation { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any): void; /** * Constructs a PatchOperation from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/PatchOperation} obj Optional instance to populate. * @return {module:model/PatchOperation} The populated PatchOperation instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to PatchOperation. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to PatchOperation. */ static validateJSON(data: any): boolean; operation: PatchOperationType; path: PatchOperationPath_default; value: any; } //#endregion export { IPatchOperation, PatchOperation as default };