import "../ApiClient-fBZ10h6n.mjs"; import { t as AttributeReference_default } from "../AttributeReference-BfCyKZ1I.mjs"; //#region src/model/ValuePathExpression.d.ts type IValuePathExpression = { attributePath: AttributeReference_default; attributeExpression: any; }; /** * @typedef {Object} IValuePathExpression * @property {AttributeReference} attributePath * @property {Object} attributeExpression */ /** * The ValuePathExpression model module. * @module model/ValuePathExpression * @type {IValuePathExpression} */ declare class ValuePathExpression { /** * 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 ValuePathExpression 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/ValuePathExpression} obj Optional instance to populate. * @return {module:model/ValuePathExpression} The populated ValuePathExpression instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ValuePathExpression. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ValuePathExpression. */ static validateJSON(data: any): boolean; attributePath: AttributeReference_default; attributeExpression: any; } //#endregion export { IValuePathExpression, ValuePathExpression as default };