Value

sealed class Value

Represents a value of an input response.

Parameters

valueType

The ValueType type of response value.

Inheritors

Types

Link copied to clipboard
class DateTimeValue(val dateTimeValue: String) : Value

Represents a datetime value of an input response.

Link copied to clipboard
class DateValue(val dateValue: String) : Value

Represents a date value of an input response.

Link copied to clipboard
class DoubleValue(val doubleValue: Double) : Value

Represents a double value of an input response.

Link copied to clipboard
class IntegerValue(val integerValue: Int) : Value

Represents an integer value of an input response.

Link copied to clipboard
class TextValue(val textValue: String) : Value

Represents a text value of an input response.

Link copied to clipboard
class UrlValue(val urlValue: URI) : Value

Represents a URL value of an input response.

Link copied to clipboard

An enum that defines Value.valueType form response types.

Properties

Link copied to clipboard