dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 534 B
TypeScript
import { ReportDownloadOptions } from '../soap/reportDownloadOptions';
import { ReportService } from '../service/reportService';
export declare class ReportDownloader {
private static SLEEP_DURATION;
private reportService;
private reportJobId;
private reportJobStatus;
constructor(reportService: ReportService, reportJobId: number);
waitForReportReady(): Promise<any>;
getDownloadUrl(exportFormat: string): Promise<string>;
getDownloadUrlWithOptions(options: ReportDownloadOptions): Promise<string>;
}