UNPKG

dfp-lib

Version:

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

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