UNPKG

dfp-lib

Version:

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

26 lines (25 loc) 1.14 kB
"use strict"; const xmlElement_1 = require("../../common/soap/xmlElement"); class Company extends xmlElement_1.XMLElement { constructor(id = null, name = null, type = null, address = null, email = null, faxPhone = null, primaryPhone = null, externalId = null, comment = null, creditStatus = null, settings = null, appliedLabels = null, primaryContactId = null, appliedTeamIds = null, thirdPartyCompanyId = null, lastModifiedDateTime = null) { super(); this.id = id; this.name = name; this.type = type; this.address = address; this.email = email; this.faxPhone = faxPhone; this.primaryPhone = primaryPhone; this.externalId = externalId; this.comment = comment; this.creditStatus = creditStatus; this.settings = settings; this.appliedLabels = appliedLabels; this.primaryContactId = primaryContactId; this.appliedTeamIds = appliedTeamIds; this.thirdPartyCompanyId = thirdPartyCompanyId; this.lastModifiedDateTime = lastModifiedDateTime; } } Company.XSI_TYPE = "Company"; exports.Company = Company;