import "../ApiClient-fBZ10h6n.mjs"; import { t as AssetTopologyGraphNodeNodeType } from "../AssetTopologyGraphNodeNodeType-CSWcxttc.mjs"; //#region src/model/AssetTopologyGraphNode.d.ts type IAssetTopologyGraphNode = { uid: string; namespace: string; id: string; type: AssetTopologyGraphNodeNodeType; }; /** * @typedef {Object} IAssetTopologyGraphNode * @property {String} uid * @property {String} namespace * @property {String} id * @property {AssetTopologyGraphNodeNodeType} type */ /** * The AssetTopologyGraphNode model module. * @module model/AssetTopologyGraphNode * @type {IAssetTopologyGraphNode} */ declare class AssetTopologyGraphNode { /** * 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, uid: any): void; /** * Constructs a AssetTopologyGraphNode 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/AssetTopologyGraphNode} obj Optional instance to populate. * @return {module:model/AssetTopologyGraphNode} The populated AssetTopologyGraphNode instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to AssetTopologyGraphNode. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to AssetTopologyGraphNode. */ static validateJSON(data: any): boolean; /** * Constructs a new AssetTopologyGraphNode. * @alias module:model/AssetTopologyGraphNode * @param {String} uid - */ constructor(uid: string); uid: string; namespace: string; id: string; type: AssetTopologyGraphNodeNodeType; } declare namespace AssetTopologyGraphNode { let RequiredProperties: string[]; } //#endregion export { IAssetTopologyGraphNode, AssetTopologyGraphNode as default };