GraphEdgeResponse

data class GraphEdgeResponse(val sourceNodeId: String? = null, val sourcePortId: String? = null, val targetNodeId: String? = null, val targetPortId: String? = null)

Defines an edge within the web service's graph.

Constructors

Link copied to clipboard
constructor(sourceNodeId: String? = null, sourcePortId: String? = null, targetNodeId: String? = null, targetPortId: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val sourceNodeId: String? = null

The source graph node's identifier.

Link copied to clipboard
val sourcePortId: String? = null

The identifier of the source node's port that the edge connects from.

Link copied to clipboard
val targetNodeId: String? = null

The destination graph node's identifier.

Link copied to clipboard
val targetPortId: String? = null

The identifier of the destination node's port that the edge connects into.