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