Represents the response for a simple time series aggregates request.

interface ESPSimpleTSAggregatesResponse {
    aggregates: ESPSimpleTSAggregate[];
    fetchNext?: () => Promise<ESPSimpleTSAggregatesResponse>;
    hasNext: boolean;
    queryInfo?: ESPSimpleTSAggregatesQueryInfo;
}

Properties

aggregates: ESPSimpleTSAggregate[]
fetchNext?: () => Promise<ESPSimpleTSAggregatesResponse>
hasNext: boolean