UNPKG

dfp-lib

Version:

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

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