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

GoogleAnalyticsAdminV1betaAccessDateRange

import type { GoogleAnalyticsAdminV1betaAccessDateRange } from "https://googleapis.deno.dev/v1/analyticsadmin:v1beta.ts";

A contiguous range of days: startDate, startDate + 1, ..., endDate.

interface GoogleAnalyticsAdminV1betaAccessDateRange {
endDate?: string;
startDate?: string;
}

§Properties

§
endDate?: string
[src]

The inclusive end date for the query in the format YYYY-MM-DD. Cannot be before startDate. The format NdaysAgo, yesterday, or today is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.

§
startDate?: string
[src]

The inclusive start date for the query in the format YYYY-MM-DD. Cannot be after endDate. The format NdaysAgo, yesterday, or today is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.