dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
15 lines (14 loc) • 567 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ProductPackageItem extends xmlElement_1.XMLElement {
constructor(id = null, productId = null, productPackageId = null, isMandatory = null, archiveStatus = null) {
super();
this.id = id;
this.productId = productId;
this.productPackageId = productPackageId;
this.isMandatory = isMandatory;
this.archiveStatus = archiveStatus;
}
}
ProductPackageItem.XSI_TYPE = "ProductPackageItem";
exports.ProductPackageItem = ProductPackageItem;