Interface JsonValueString

Represents a string JSON value. Subtype of JsonValue.

interface JsonValueString {
    @type: "jsonValueString";
    value: string;
}

Properties

Properties

@type: "jsonValueString"
value: string

The value.