Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ReportSummaryHistogramChartDataBucket

import type { ReportSummaryHistogramChartDataBucket } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

A histogram bucket with a lower and upper bound, and a count of items with a field value between those bounds. The lower bound is inclusive and the upper bound is exclusive. Lower bound may be -infinity and upper bound may be infinity.

interface ReportSummaryHistogramChartDataBucket {
count?: bigint;
lowerBound?: bigint;
upperBound?: bigint;
}

§Properties

§
count?: bigint
[src]

Count of items in the bucket.

§
lowerBound?: bigint
[src]

Lower bound - inclusive.

§
upperBound?: bigint
[src]

Upper bound - exclusive.