@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (16 loc) • 427 B
text/typescript
import { DayParts } from './DayParts'
export enum TimeZone {
PUBLISHER = 'PUBLISHER',
BROWSER = 'BROWSER',
}
/**
* dayPartTargeting
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202411`
*/
export interface DayPartTargeting {
/** dayParts[] */
dayParts?: Array<DayParts>
/** DeliveryTimeZone|xsd:string|PUBLISHER,BROWSER */
timeZone?: TimeZone | keyof typeof TimeZone
}