@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
14 lines (13 loc) • 350 B
TypeScript
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>;
}