@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
16 lines (14 loc) • 363 B
text/typescript
export enum ExportFormat {
TSV = 'TSV',
TSV_EXCEL = 'TSV_EXCEL',
CSV_DUMP = 'CSV_DUMP',
XML = 'XML',
XLSX = 'XLSX',
}
/** getReportDownloadURL */
export interface GetReportDownloadUrl {
/** xsd:long */
reportJobId?: number
/** ExportFormat|xsd:string|TSV,TSV_EXCEL,CSV_DUMP,XML,XLSX */
exportFormat?: ExportFormat | keyof typeof ExportFormat
}