WorkflowStepOutputUnion

A structure to hold multiple values of an output.

Inheritors

Types

Link copied to clipboard
data class IntegerValue(val value: Int) : WorkflowStepOutputUnion

The integer value.

Link copied to clipboard

The list of string value.

Link copied to clipboard
Link copied to clipboard
data class StringValue(val value: String) : WorkflowStepOutputUnion

The string value.

Functions

Link copied to clipboard

Casts this WorkflowStepOutputUnion as a IntegerValue and retrieves its kotlin.Int value. Throws an exception if the WorkflowStepOutputUnion is not a IntegerValue.

Link copied to clipboard

Casts this WorkflowStepOutputUnion as a IntegerValue and retrieves its kotlin.Int value. Returns null if the WorkflowStepOutputUnion is not a IntegerValue.

Link copied to clipboard

Casts this WorkflowStepOutputUnion as a ListOfStringValue and retrieves its kotlin.collections.List value. Throws an exception if the WorkflowStepOutputUnion is not a ListOfStringValue.

Link copied to clipboard
Link copied to clipboard

Casts this WorkflowStepOutputUnion as a StringValue and retrieves its kotlin.String value. Throws an exception if the WorkflowStepOutputUnion is not a StringValue.

Link copied to clipboard

Casts this WorkflowStepOutputUnion as a StringValue and retrieves its kotlin.String value. Returns null if the WorkflowStepOutputUnion is not a StringValue.