UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

11 lines (10 loc) 484 B
import { XMLElement } from '../../common/soap/xmlElement'; import { ExportFormat } from './exportFormat'; export declare class ReportDownloadOptions extends XMLElement { protected static XSI_TYPE: string; exportFormat: ExportFormat; includeReportProperties: boolean; includeTotalsRow: boolean; useGzipCompression: boolean; constructor(exportFormat?: ExportFormat, includeReportProperties?: boolean, includeTotalsRow?: boolean, useGzipCompression?: boolean); }