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

TimeRange

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

A specification for a time range, this will request transfer runs with run_time between start_time (inclusive) and end_time (exclusive).

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

§Properties

§
endTime?: Date
[src]

End time of the range of transfer runs. For example, "2017-05-30T00:00:00+00:00". The end_time must not be in the future. Creates transfer runs where run_time is in the range between start_time (inclusive) and end_time (exclusive).

§
startTime?: Date
[src]

Start time of the range of transfer runs. For example, "2017-05-25T00:00:00+00:00". The start_time must be strictly less than the end_time. Creates transfer runs where run_time is in the range between start_time (inclusive) and end_time (exclusive).