UNPKG

dfp-lib

Version:

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

13 lines (12 loc) 371 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class ContentBundle extends xmlElement_1.XMLElement { constructor(id = null, name = null, status = null) { super(); this.id = id; this.name = name; this.status = status; } } ContentBundle.XSI_TYPE = "ContentBundle"; exports.ContentBundle = ContentBundle;