UNPKG

dfp-lib

Version:

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

10 lines (9 loc) 464 B
import { XMLElement } from '../../common/soap/xmlElement'; import { ReconciliationLineItemReport } from './reconciliationLineItemReport'; export declare class ReconciliationLineItemReportPage extends XMLElement { protected static XSI_TYPE: string; results: ReconciliationLineItemReport[]; startIndex: number; totalResultSetSize: number; constructor(results?: ReconciliationLineItemReport[], startIndex?: number, totalResultSetSize?: number); }