interface AggregatedNumberValue {
    aggregate:
        | "count"
        | "avg"
        | "max"
        | "min"
        | "sum";
    property?: string;
    value?: number;
}

Properties

aggregate:
    | "count"
    | "avg"
    | "max"
    | "min"
    | "sum"
avg
property?: string

The property the aggregate was calculated from

duration
value?: number

Value returned by the aggregate function

0.2