📋 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 }
]
};
interface ArrayValue {
    values: AnyValue[];
}

Properties

Properties

values: AnyValue[]

Array of values of any supported type