UNPKG

@dmgt/google-ad-manager-api

Version:
17 lines (16 loc) 447 B
import { DayParts } from './DayParts'; export declare enum TimeZone { PUBLISHER = "PUBLISHER", BROWSER = "BROWSER" } /** * dayPartTargeting * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202502` */ export interface DayPartTargeting { /** dayParts[] */ dayParts?: Array<DayParts>; /** DeliveryTimeZone|xsd:string|PUBLISHER,BROWSER */ timeZone?: TimeZone | keyof typeof TimeZone; }