UNPKG

@dmgt/google-ad-manager-api

Version:
14 lines (13 loc) 350 B
import { StartDateTime } from './StartDateTime'; import { Targets } from './Targets'; /** * breakdown * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202505` */ export interface Breakdown { /** timeWindows[] */ timeWindows?: Array<StartDateTime>; /** targets[] */ targets?: Array<Targets>; }