IntegerValue

data class IntegerValue(val value: Int) : WorkflowStepOutputUnion

The integer value.

Constructors

Link copied to clipboard
constructor(value: Int)

Properties

Link copied to clipboard
val value: Int

Inherited 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 List value. Throws an exception if the WorkflowStepOutputUnion is not a ListOfStringValue.

Link copied to clipboard

Casts this WorkflowStepOutputUnion as a ListOfStringValue and retrieves its List value. Returns null if the WorkflowStepOutputUnion is not a ListOfStringValue.

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.