import { DayParts } from './DayParts' export enum TimeZone { PUBLISHER = 'PUBLISHER', BROWSER = 'BROWSER', } /** * dayPartTargeting * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202511` */ export interface DayPartTargeting { /** dayParts[] */ dayParts?: Array /** DeliveryTimeZone|xsd:string|PUBLISHER,BROWSER */ timeZone?: TimeZone | keyof typeof TimeZone }