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