dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
16 lines (15 loc) • 851 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ContentTargeting extends xmlElement_1.XMLElement {
constructor(targetedContentIds = null, excludedContentIds = null, targetedVideoContentBundleIds = null, excludedVideoContentBundleIds = null, targetedContentMetadata = null, excludedContentMetadata = null) {
super();
this.targetedContentIds = targetedContentIds;
this.excludedContentIds = excludedContentIds;
this.targetedVideoContentBundleIds = targetedVideoContentBundleIds;
this.excludedVideoContentBundleIds = excludedVideoContentBundleIds;
this.targetedContentMetadata = targetedContentMetadata;
this.excludedContentMetadata = excludedContentMetadata;
}
}
ContentTargeting.XSI_TYPE = "ContentTargeting";
exports.ContentTargeting = ContentTargeting;