dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
17 lines (16 loc) • 592 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class CustomField extends xmlElement_1.XMLElement {
constructor(id = null, name = null, description = null, isActive = null, entityType = null, dataType = null, visibility = null) {
super();
this.id = id;
this.name = name;
this.description = description;
this.isActive = isActive;
this.entityType = entityType;
this.dataType = dataType;
this.visibility = visibility;
}
}
CustomField.XSI_TYPE = "CustomField";
exports.CustomField = CustomField;