Interface SpatialAggregationMetricValue

interface SpatialAggregationMetricValue {
    approximate?: boolean;
    kind:
        | "min"
        | "max"
        | "sum"
        | "avg";
    unit?: string;
    value: null | number;
}

Properties

approximate?: boolean
kind:
    | "min"
    | "max"
    | "sum"
    | "avg"
unit?: string
value: null | number