StringValue

data class StringValue(val value: String) : WorkflowStepOutputUnion

The string value.

Constructors

Link copied to clipboard
constructor(value: String)

Properties

Link copied to clipboard

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.