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