UNPKG

dfp-lib

Version:

This project hosts the Node.JS client library for the SOAP-based DFP API at Google.

18 lines (17 loc) 733 B
"use strict"; const customField_1 = require("./customField"); class DropDownCustomField extends customField_1.CustomField { constructor(options = null, id = null, name = null, description = null, isActive = null, entityType = null, dataType = null, visibility = null) { super(id, name, description, isActive, entityType, dataType, visibility); this.options = options; this.id = id; this.name = name; this.description = description; this.isActive = isActive; this.entityType = entityType; this.dataType = dataType; this.visibility = visibility; } } DropDownCustomField.XSI_TYPE = "DropDownCustomField"; exports.DropDownCustomField = DropDownCustomField;