Interface WidgetHistogramResult

interface WidgetHistogramResult {
    bins: readonly WidgetHistogramBin[];
    cache: WidgetSourceCacheMetadata;
    degraded?: readonly DegradedReason[];
    execution: WidgetSourceExecutionMode;
    field: string;
    kind: "histogram";
    max: null | number;
    min: null | number;
    protocol: Protocol;
    schemaVersion: "honua.widget-source.v1";
    serverPushdown: boolean;
    sourceId: string;
}

Hierarchy (view full)

Properties

bins: readonly WidgetHistogramBin[]
degraded?: readonly DegradedReason[]
field: string
kind
max: null | number
min: null | number
protocol: Protocol
schemaVersion
serverPushdown: boolean
sourceId: string