UNPKG

@dmgt/google-ad-manager-api

Version:
19 lines (16 loc) 427 B
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 }