Interface JsonValueArray

Represents a JSON array. Subtype of JsonValue.

interface JsonValueArray {
    @type: "jsonValueArray";
    values: JsonValue[];
}

Properties

Properties

@type: "jsonValueArray"
values: JsonValue[]

The list of array elements.