@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
15 lines (13 loc) • 339 B
text/typescript
import { StartDateTime } from './StartDateTime'
import { Targets } from './Targets'
/**
* breakdown
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface Breakdown {
/** timeWindows[] */
timeWindows?: Array<StartDateTime>
/** targets[] */
targets?: Array<Targets>
}