UNPKG

dfp-lib

Version:

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

14 lines (13 loc) 451 B
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class DfpLocation extends xmlElement_1.XMLElement { constructor(id = null, type = null, canonicalParentId = null, displayName = null) { super(); this.id = id; this.type = type; this.canonicalParentId = canonicalParentId; this.displayName = displayName; } } DfpLocation.XSI_TYPE = "Location"; exports.DfpLocation = DfpLocation;