dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
26 lines (25 loc) • 1.36 kB
JavaScript
"use strict";
const creative_1 = require("./creative");
class InternalRedirectCreative extends creative_1.Creative {
constructor(lockedOrientation = null, assetSize = null, internalRedirectUrl = null, overrideSize = null, isInterstitial = null, sslScanResult = null, sslManualOverride = null, advertiserId, id, name, size, previewUrl, policyViolations, appliedLabels, lastModifiedDateTime, customFieldValues) {
super(advertiserId, id, name, size, previewUrl, policyViolations, appliedLabels, lastModifiedDateTime, customFieldValues);
this.lockedOrientation = lockedOrientation;
this.assetSize = assetSize;
this.internalRedirectUrl = internalRedirectUrl;
this.overrideSize = overrideSize;
this.isInterstitial = isInterstitial;
this.sslScanResult = sslScanResult;
this.sslManualOverride = sslManualOverride;
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;
}
}
InternalRedirectCreative.XSI_TYPE = "InternalRedirectCreative";
exports.InternalRedirectCreative = InternalRedirectCreative;