@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
20 lines (19 loc) • 521 B
TypeScript
import { Targeting } from './Targeting';
import { StartDateTime } from './StartDateTime';
/**
* trafficForecastSegments
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface TrafficForecastSegments {
/** xsd:long */
id?: number;
/** xsd:string */
name?: string;
/** targeting */
targeting?: Targeting;
/** xsd:int */
activeForecastAdjustmentCount?: number;
/** creationDateTime */
creationDateTime?: StartDateTime;
}