dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
19 lines (18 loc) • 1.25 kB
JavaScript
;
const creative_1 = require("./creative");
class Html5Creative extends creative_1.Creative {
constructor(overrideSize = null, thirdPartyImpressionTrackingUrls = null, thirdPartyClickTrackingUrl = null, isInterstitial = null, lockedOrientation = null, sslScanResult = null, sslManualOverride = null, isSafeFrameCompatible = null, html5Asset = 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.overrideSize = overrideSize;
this.thirdPartyImpressionTrackingUrls = thirdPartyImpressionTrackingUrls;
this.thirdPartyClickTrackingUrl = thirdPartyClickTrackingUrl;
this.isInterstitial = isInterstitial;
this.lockedOrientation = lockedOrientation;
this.sslScanResult = sslScanResult;
this.sslManualOverride = sslManualOverride;
this.isSafeFrameCompatible = isSafeFrameCompatible;
this.html5Asset = html5Asset;
}
}
Html5Creative.XSI_TYPE = "Html5Creative";
exports.Html5Creative = Html5Creative;