dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 733 B
JavaScript
;
const creative_1 = require("./creative");
class HasDestinationUrlCreative extends creative_1.Creative {
constructor(destinationUrl = null, destinationUrlType = 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.destinationUrl = destinationUrl;
this.destinationUrlType = destinationUrlType;
}
}
HasDestinationUrlCreative.XSI_TYPE = "HasDestinationUrlCreative";
exports.HasDestinationUrlCreative = HasDestinationUrlCreative;