UNPKG

dfp-lib

Version:

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

13 lines (12 loc) 470 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class WorkflowRequestPage extends xmlElement_1.XMLElement { constructor(results = null, startIndex = null, totalResultSetSize = null) { super(); this.results = results; this.startIndex = startIndex; this.totalResultSetSize = totalResultSetSize; } } WorkflowRequestPage.XSI_TYPE = "WorkflowRequestPage"; exports.WorkflowRequestPage = WorkflowRequestPage;