dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 596 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class SetTopBoxInfo extends xmlElement_1.XMLElement {
constructor(syncStatus = null, lastSyncResult = null, lastSyncCanoeResponseMessage = null, nielsenProductCategoryCode = null) {
super();
this.syncStatus = syncStatus;
this.lastSyncResult = lastSyncResult;
this.lastSyncCanoeResponseMessage = lastSyncCanoeResponseMessage;
this.nielsenProductCategoryCode = nielsenProductCategoryCode;
}
}
SetTopBoxInfo.XSI_TYPE = "SetTopBoxInfo";
exports.SetTopBoxInfo = SetTopBoxInfo;