@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
21 lines (19 loc) • 495 B
text/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
}