dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
13 lines (12 loc) • 469 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class ProposalCompanyAssociation extends xmlElement_1.XMLElement {
constructor(companyId = null, type = null, contactIds = null) {
super();
this.companyId = companyId;
this.type = type;
this.contactIds = contactIds;
}
}
ProposalCompanyAssociation.XSI_TYPE = "ProposalCompanyAssociation";
exports.ProposalCompanyAssociation = ProposalCompanyAssociation;