dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
20 lines (19 loc) • 794 B
JavaScript
"use strict";
const xmlElement_1 = require("../../common/soap/xmlElement");
class Package extends xmlElement_1.XMLElement {
constructor(id = null, proposalId = null, productPackageId = null, rateCardId = null, name = null, comments = null, status = null, startDateTime = null, endDateTime = null, lastModifiedDateTime = null) {
super();
this.id = id;
this.proposalId = proposalId;
this.productPackageId = productPackageId;
this.rateCardId = rateCardId;
this.name = name;
this.comments = comments;
this.status = status;
this.startDateTime = startDateTime;
this.endDateTime = endDateTime;
this.lastModifiedDateTime = lastModifiedDateTime;
}
}
Package.XSI_TYPE = "Package";
exports.Package = Package;