dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
14 lines (13 loc) • 519 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class MarketplaceComment extends xmlElement_1.XMLElement {
constructor(proposalId = null, comment = null, creationTime = null, createdBySeller = null) {
super();
this.proposalId = proposalId;
this.comment = comment;
this.creationTime = creationTime;
this.createdBySeller = createdBySeller;
}
}
MarketplaceComment.XSI_TYPE = "MarketplaceComment";
exports.MarketplaceComment = MarketplaceComment;