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;
}