ValueSource
public enum ValueSource : DataInputConvertible
Represents the source of a value used in a transformation operation.
A ValueSource can either reference an existing value in the dispatch payload
or provide a constant value directly.
-
A reference to an existing value in the dispatch payload.
Declaration
Swift
case reference(_: ReferenceContainer) -
A constant value to be used directly.
Declaration
Swift
case constant(_: ValueContainer) -
Declaration
Swift
public func toDataInput() -> any DataInput
View on GitHub