Interface JsonValueObject

Represents a JSON object. Subtype of JsonValue.

interface JsonValueObject {
    @type: "jsonValueObject";
    members: JsonObjectMember[];
}

Properties

Properties

@type: "jsonValueObject"
members: JsonObjectMember[]

The list of object members.