DateRange
import type { DateRange } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";A contiguous set of days: startDate, startDate + 1, ..., endDate.
Requests are allowed up to 4 date ranges.
interface DateRange {
endDate?: string;
name?: string;
startDate?: string;
}§Properties
§
endDate?: string
[src]The inclusive end date for the query in the format YYYY-MM-DD. Cannot be
before start_date. The format NdaysAgo, yesterday, or today is also
accepted, and in that case, the date is inferred based on the property's
reporting time zone.