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