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

DatedValue

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

Represents a single datapoint in the timeseries, where each datapoint is a date-value pair.

interface DatedValue {
date?: Date;
value?: bigint;
}

§Properties

§
date?: Date
[src]

The date that the datapoint corresponds to. This represents a month value if the day field is not set.

§
value?: bigint
[src]

The value of the datapoint. This will not be present when the value is zero.