Interface DimensionData

interface DimensionData {
    humanKey: string;
    humanValue?: null | string;
    key: string;
    unit?: null | string;
    value: string;
}

Properties

humanKey: string

A human-readable key for this data item.

humanValue?: null | string

A human-readable formatted value for this data item.

key: string

The unique keystring for this data item.

unit?: null | string

The units associated with this data item’s value, if applicable.

value: string

The value for this data item.