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