UNPKG

dfp-lib

Version:

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

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