UNPKG

dfp-lib

Version:

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

16 lines (15 loc) 554 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class Team extends xmlElement_1.XMLElement { constructor(id = null, name = null, description = null, hasAllCompanies = null, hasAllInventory = null, teamAccessType = null) { super(); this.id = id; this.name = name; this.description = description; this.hasAllCompanies = hasAllCompanies; this.hasAllInventory = hasAllInventory; this.teamAccessType = teamAccessType; } } Team.XSI_TYPE = "Team"; exports.Team = Team;