📋 ArrayValue is a list of AnyValue messages.
Used to represent arrays of mixed-type values in telemetry attributes. Each element in the array can be any valid AnyValue type.
const mixedArray: ArrayValue = { values: [ { stringValue: "minecraft:diamond_ore" }, { intValue: 64 }, { boolValue: true }, { doubleValue: 12.5 } ]}; Copy
const mixedArray: ArrayValue = { values: [ { stringValue: "minecraft:diamond_ore" }, { intValue: 64 }, { boolValue: true }, { doubleValue: 12.5 } ]};
Array of values of any supported type
📋 ArrayValue is a list of AnyValue messages.
Used to represent arrays of mixed-type values in telemetry attributes. Each element in the array can be any valid AnyValue type.
Example