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

TimeInterval

import type { TimeInterval } from "https://googleapis.deno.dev/v1/adexchangebuyer2:v2beta1.ts";

An interval of time, with an absolute start and end.

interface TimeInterval {
endTime?: Date;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

The timestamp marking the end of the range (exclusive) for which data is included.

§
startTime?: Date
[src]

The timestamp marking the start of the range (inclusive) for which data is included.