AI-generated Key Takeaways
-
TvCampaignDetail holds TV campaign data for specific start dates and date windows, including an ID, timepoints, and resource kind.
-
TvCampaignTimepoint represents a single data point within a TvCampaignDetail, containing the start date, date window, and spend for that period.
-
TvCampaignDateWindow defines the possible timeframes for a TV campaign, ranging from one to twelve weeks.
-
The API provides a method to retrieve a specific TvCampaignDetail using its unique ID.
Resource: TvCampaignDetail
TvCampaignDetail contains data from a TV campaign for specific start dates and date windows.
JSON representation |
---|
{
"id": string,
"timepoints": [
{
object ( |
Fields | |
---|---|
id |
ID of this TV campaign. |
timepoints[] |
The timepoints of the TV campaign. |
kind |
Identifies what kind of resource this is. Value: the fixed string
. |
TvCampaignTimepoint
A single data point for TvCampaignDetail, which holds information about the TV campaign for a specific start date and date window.
JSON representation |
---|
{
"startDate": string,
"dateWindow": enum ( |
Fields | |
---|---|
startDate |
The start date of the timepoint. A string in the format of "yyyy-MM-dd". |
dateWindow |
The date window of the timepoint. |
spend |
The spend within the time range of the timepoint. |
Methods |
|
---|---|
|
Gets one TvCampaignDetail by ID. |