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

TvCampaignTimepoint

import type { TvCampaignTimepoint } from "https://googleapis.deno.dev/v1/dfareporting:v5.ts";

A single data point for TvCampaignDetail, which holds information about the TV campaign for a specific start date and date window.

interface TvCampaignTimepoint {
dateWindow?:
| "WEEKS_UNSPECIFIED"
| "WEEKS_ONE"
| "WEEKS_FOUR"
| "WEEKS_EIGHT"
| "WEEKS_TWELVE";
spend?: number;
startDate?: string;
}

§Properties

§
dateWindow?: "WEEKS_UNSPECIFIED" | "WEEKS_ONE" | "WEEKS_FOUR" | "WEEKS_EIGHT" | "WEEKS_TWELVE"
[src]

The date window of the timepoint.

§
spend?: number
[src]

The spend within the time range of the timepoint.

§
startDate?: string
[src]

The start date of the timepoint. A string in the format of "yyyy-MM-dd".