UNPKG

gads

Version:

An unofficial JS client library for the SOAP-based DFP Ads API

8 lines (7 loc) 279 B
import { BaseObject } from './baseObject'; import { ReconciliationReportRow } from './reconciliationReportRow'; export interface ReconciliationReportRowPage extends BaseObject { totalResultSetSize?: number; startIndex?: number; results?: ReconciliationReportRow[]; }