PipelineMath

data class PipelineMath(val attribute: String, val math: String, val name: String, val next: String? = null)

Constructors

Link copied to clipboard
constructor(attribute: String, math: String, name: String, next: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the attribute that contains the result of the math operation.

Link copied to clipboard

An expression that uses one or more existing attributes and must return an integer value.

Link copied to clipboard

The name of the 'math' activity.

Link copied to clipboard
val next: String? = null

The next activity in the pipeline.