UNPKG

dfp-lib

Version:

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

11 lines (10 loc) 255 B
"use strict"; const value_1 = require("./value"); class BooleanValue extends value_1.Value { constructor(value = null) { super(); this.value = value; } } BooleanValue.XSI_TYPE = "BooleanValue"; exports.BooleanValue = BooleanValue;