Interface JsonValueBoolean

Represents a boolean JSON value. Subtype of JsonValue.

interface JsonValueBoolean {
    @type: "jsonValueBoolean";
    value?: boolean;
}

Properties

Properties

@type: "jsonValueBoolean"
value?: boolean

The value.