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/v202508` */ 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 }