dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 609 B
JavaScript
;
const hasDestinationUrlCreative_1 = require("./hasDestinationUrlCreative");
class BaseImageCreative extends hasDestinationUrlCreative_1.HasDestinationUrlCreative {
constructor(overrideSize = null, primaryImageAsset = null, destinationUrl = null, destinationUrlType = null) {
super();
this.overrideSize = overrideSize;
this.primaryImageAsset = primaryImageAsset;
this.destinationUrl = destinationUrl;
this.destinationUrlType = destinationUrlType;
}
}
BaseImageCreative.XSI_TYPE = "BaseImageCreative";
exports.BaseImageCreative = BaseImageCreative;