/* Copyright© 2000 - 2026 SuperMap Software Co.Ltd. All rights reserved.* This program are made available under the terms of the Apache License, Version 2.0* which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.html.*/import { Util } from '../commontypes/Util';/*** @private* @class KnowledgeGraphEdgeParameter* @deprecatedclass SuperMap.KnowledgeGraphEdgeParameter* @classdesc 知识图谱关系的参数设置。* @category iServer KnowledgeGraph* @version 11.1.0* @param {Object} options - 参数。* @param {string} options.id - 边id。* @param {string} options.start - 开始实体id。* @param {string} options.end - 结束实体id。* @param {string} [options.type] - 标签,关系。* @param {Object} [options.properties] - 属性。* @usage*/export class KnowledgeGraphEdgeParameter {constructor(options) {/*** @member {string} KnowledgeGraphEdgeParameter.prototype.id* @description 边id。*/this.id = null;/*** @member {string} KnowledgeGraphEdgeParameter.prototype.start* @description 开始实体id。*/this.start = null;/*** @member {string} KnowledgeGraphEdgeParameter.prototype.end* @description 结束实体id。*/this.end = null;/*** @member {string} KnowledgeGraphEdgeParameter.prototype.type* @description 标签,关系。*/this.type = null;/*** @member {Object} KnowledgeGraphEdgeParameter.prototype.properties* @description 实体属性。*/this.properties = null;this.CLASS_NAME = 'SuperMap.KnowledgeGraphEdgeParameter';Util.extend(this, options);}destroy() {var me = this;me.id = null;me.start = null;me.end = null;me.type = null;me.properties = null;}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。