dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
12 lines (11 loc) • 351 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class AppliedLabel extends xmlElement_1.XMLElement {
constructor(labelId = null, isNegated = null) {
super();
this.labelId = labelId;
this.isNegated = isNegated;
}
}
AppliedLabel.XSI_TYPE = "AppliedLabel";
exports.AppliedLabel = AppliedLabel;