GraphNodeResponse

data class GraphNodeResponse(val assetId: String? = null, val inputId: String? = null, val outputId: String? = null, val parameters: Map<String, WebServiceParameterResponse>? = null)

Specifies a node in the web service graph. The node can either be an input, output or asset node, so only one of the corresponding id properties is populated at any given time.

Constructors

Link copied to clipboard
constructor(assetId: String? = null, inputId: String? = null, outputId: String? = null, parameters: Map<String, WebServiceParameterResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val assetId: String? = null

The id of the asset represented by this node.

Link copied to clipboard
val inputId: String? = null

The id of the input element represented by this node.

Link copied to clipboard
val outputId: String? = null

The id of the output element represented by this node.

Link copied to clipboard

If applicable, parameters of the node. Global graph parameters map into these, with values set at runtime.