@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
23 lines (22 loc) • 619 B
TypeScript
export declare 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/v202505`
*/
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;
}