Interface StatisticalValue

A value with information about its recent changes.

interface StatisticalValue {
    @type: "statisticalValue";
    growth_rate_percentage: number;
    previous_value: number;
    value: number;
}

Properties

@type: "statisticalValue"
growth_rate_percentage: number

The growth rate of the value, as a percentage.

previous_value: number

The value for the previous day.

value: number

The current value.