dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 638 B
JavaScript
;
const creative_1 = require("./creative");
class ClickTrackingCreative extends creative_1.Creative {
constructor(clickTrackingUrl = null, advertiserId = null, id = null, name = null, size = null, previewUrl = null, policyViolations = null, appliedLabels = null, lastModifiedDateTime = null, customFieldValues = null) {
super(advertiserId, id, name, size, previewUrl, policyViolations, appliedLabels, lastModifiedDateTime, customFieldValues);
this.clickTrackingUrl = clickTrackingUrl;
}
}
ClickTrackingCreative.XSI_TYPE = "ClickTrackingCreative";
exports.ClickTrackingCreative = ClickTrackingCreative;