dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 419 B
JavaScript
;
const customCriteriaLeaf_1 = require("./customCriteriaLeaf");
class CustomCriteria extends customCriteriaLeaf_1.CustomCriteriaLeaf {
constructor(keyId = null, valueIds = null, operator = null) {
super();
this.keyId = keyId;
this.valueIds = valueIds;
this.operator = operator;
}
}
CustomCriteria.XSI_TYPE = "CustomCriteria";
exports.CustomCriteria = CustomCriteria;