Interface SpatialAggregationCategoryValue

interface SpatialAggregationCategoryValue {
    approximate?: boolean;
    buckets: readonly SpatialAggregationCategoryBucket[];
    kind: "category";
    nullCount?: number;
    otherCount?: number;
}

Properties

approximate?: boolean
kind
nullCount?: number
otherCount?: number