StringValue

data class StringValue(val value: String) : StepInput

String value.

Constructors

Link copied to clipboard
constructor(value: String)

Properties

Link copied to clipboard

Inherited functions

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Casts this StepInput as a ListOfStringsValue and retrieves its List value. Throws an exception if the StepInput is not a ListOfStringsValue.

Link copied to clipboard

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

Link copied to clipboard

Casts this StepInput as a MapOfStringValue and retrieves its Map value. Throws an exception if the StepInput is not a MapOfStringValue.

Link copied to clipboard

Casts this StepInput as a MapOfStringValue and retrieves its Map value. Returns null if the StepInput is not a MapOfStringValue.

Link copied to clipboard

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

Link copied to clipboard

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