@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
24 lines (22 loc) • 583 B
text/typescript
export enum ExportFormat {
TSV = 'TSV',
TSV_EXCEL = 'TSV_EXCEL',
CSV_DUMP = 'CSV_DUMP',
XML = 'XML',
XLSX = 'XLSX',
}
/**
* reportDownloadOptions
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
*/
export interface ReportDownloadOptions {
/** ExportFormat|xsd:string|TSV,TSV_EXCEL,CSV_DUMP,XML,XLSX */
exportFormat?: ExportFormat | keyof typeof ExportFormat
/** xsd:boolean */
includeReportProperties?: boolean
/** xsd:boolean */
includeTotalsRow?: boolean
/** xsd:boolean */
useGzipCompression?: boolean
}