dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
16 lines (15 loc) • 797 B
JavaScript
;
const baseImageRedirectCreative_1 = require("./baseImageRedirectCreative");
class ImageRedirectOverlayCreative extends baseImageRedirectCreative_1.BaseImageRedirectCreative {
constructor(assetSize = null, duration = null, companionCreativeIds = null, trackingUrls = null, customParameters = null, vastPreviewUrl = null, imageUrl = null) {
super(imageUrl);
this.assetSize = assetSize;
this.duration = duration;
this.companionCreativeIds = companionCreativeIds;
this.trackingUrls = trackingUrls;
this.customParameters = customParameters;
this.vastPreviewUrl = vastPreviewUrl;
}
}
ImageRedirectOverlayCreative.XSI_TYPE = "ImageRedirectOverlayCreative";
exports.ImageRedirectOverlayCreative = ImageRedirectOverlayCreative;