dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
22 lines (21 loc) • 1.03 kB
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class LineItemTemplate extends xmlElement_1.XMLElement {
constructor(id = null, name = null, isDefault = null, lineItemName = null, enabledForSameAdvertiserException = null, notes = null, lineItemType = null, startTime = null, endTime = null, deliveryRateType = null, roadblockingType = null, creativeRotationType = null) {
super();
this.id = id;
this.name = name;
this.isDefault = isDefault;
this.lineItemName = lineItemName;
this.enabledForSameAdvertiserException = enabledForSameAdvertiserException;
this.notes = notes;
this.lineItemType = lineItemType;
this.startTime = startTime;
this.endTime = endTime;
this.deliveryRateType = deliveryRateType;
this.roadblockingType = roadblockingType;
this.creativeRotationType = creativeRotationType;
}
}
LineItemTemplate.XSI_TYPE = "LineItemTemplate";
exports.LineItemTemplate = LineItemTemplate;