UNPKG

dfp-lib

Version:

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

20 lines (19 loc) 840 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class AdSenseSettings extends xmlElement_1.XMLElement { constructor(adSenseEnabled = null, borderColor = null, titleColor = null, backgroundColor = null, textColor = null, urlColor = null, adType = null, borderStyle = null, fontFamily = null, fontSize = null) { super(); this.adSenseEnabled = adSenseEnabled; this.borderColor = borderColor; this.titleColor = titleColor; this.backgroundColor = backgroundColor; this.textColor = textColor; this.urlColor = urlColor; this.adType = adType; this.borderStyle = borderStyle; this.fontFamily = fontFamily; this.fontSize = fontSize; } } AdSenseSettings.XSI_TYPE = "AdSenseSettings"; exports.AdSenseSettings = AdSenseSettings;