UNPKG

dfp-lib

Version:

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

12 lines (11 loc) 333 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class ResultSet extends xmlElement_1.XMLElement { constructor(columnTypes = null, rows = null) { super(); this.columnTypes = columnTypes; this.rows = rows; } } ResultSet.XSI_TYPE = "ResultSet"; exports.ResultSet = ResultSet;