dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
19 lines (18 loc) • 905 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class Content extends xmlElement_1.XMLElement {
constructor(id = null, name = null, status = null, statusDefinedBy = null, importDateTime = null, lastModifiedDateTime = null, userDefinedCustomTargetingValueIds = null, mappingRuleDefinedCustomTargetingValueIds = null, cmsSources = null) {
super();
this.id = id;
this.name = name;
this.status = status;
this.statusDefinedBy = statusDefinedBy;
this.importDateTime = importDateTime;
this.lastModifiedDateTime = lastModifiedDateTime;
this.userDefinedCustomTargetingValueIds = userDefinedCustomTargetingValueIds;
this.mappingRuleDefinedCustomTargetingValueIds = mappingRuleDefinedCustomTargetingValueIds;
this.cmsSources = cmsSources;
}
}
Content.XSI_TYPE = "Content";
exports.Content = Content;