dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 851 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class CreativePlaceholder extends xmlElement_1.XMLElement {
constructor(size = null, creativeTemplateId = null, companions = null, appliedLabels = null, effectiveAppliedLabels = null, expectedCreativeCount = null, creativeSizeType = null, targetingName = null) {
super();
this.size = size;
this.creativeTemplateId = creativeTemplateId;
this.companions = companions;
this.appliedLabels = appliedLabels;
this.effectiveAppliedLabels = effectiveAppliedLabels;
this.expectedCreativeCount = expectedCreativeCount;
this.creativeSizeType = creativeSizeType;
this.targetingName = targetingName;
}
}
CreativePlaceholder.XSI_TYPE = "CreativePlaceholder";
exports.CreativePlaceholder = CreativePlaceholder;