Interface OptionValueString

Represents a string option. Subtype of OptionValue.

interface OptionValueString {
    @type: "optionValueString";
    value: string;
}

Properties

Properties

@type: "optionValueString"
value: string

The value of the option.