dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
11 lines (10 loc) • 452 B
JavaScript
;
const baseCustomFieldValue_1 = require("./baseCustomFieldValue");
class DropDownCustomFieldValue extends baseCustomFieldValue_1.BaseCustomFieldValue {
constructor(customFieldOptionId = null, customFieldId = null) {
super(customFieldId);
this.customFieldOptionId = customFieldOptionId;
}
}
DropDownCustomFieldValue.XSI_TYPE = "DropDownCustomFieldValue";
exports.DropDownCustomFieldValue = DropDownCustomFieldValue;