dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
10 lines (9 loc) • 352 B
TypeScript
import { XMLElement } from '../../common/soap/xmlElement';
import { ReportQuery } from './reportQuery';
export declare class ReportJob extends XMLElement {
protected static XSI_TYPE: string;
id: number;
reportQuery: ReportQuery;
constructor(id?: number, reportQuery?: ReportQuery);
setReportQuery(reportQuery: ReportQuery): this;
}