dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
19 lines (18 loc) • 766 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class Creative extends xmlElement_1.XMLElement {
constructor(advertiserId = null, id = null, name = null, size = null, previewUrl = null, policyViolations = null, appliedLabels = null, lastModifiedDateTime = null, customFieldValues = null) {
super();
this.advertiserId = advertiserId;
this.id = id;
this.name = name;
this.size = size;
this.previewUrl = previewUrl;
this.policyViolations = policyViolations;
this.appliedLabels = appliedLabels;
this.lastModifiedDateTime = lastModifiedDateTime;
this.customFieldValues = customFieldValues;
}
}
Creative.XSI_TYPE = "Creative";
exports.Creative = Creative;