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

AbsoluteDateRange

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

An absolute date range, specified by its start date and end date. The supported range of dates begins 30 days before today and ends today. Validity checked upon filter set creation. If a filter set with an absolute date range is run at a later date more than 30 days after start_date, it will fail.

interface AbsoluteDateRange {
endDate?: Date;
startDate?: Date;
}

§Properties

§
endDate?: Date
[src]

The end date of the range (inclusive). Must be within the 30 days leading up to current date, and must be equal to or after start_date.

§
startDate?: Date
[src]

The start date of the range (inclusive). Must be within the 30 days leading up to current date, and must be equal to or before end_date.