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