dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
16 lines (15 loc) • 517 B
JavaScript
;
const xmlElement_1 = require("../../common/soap/xmlElement");
class Activity extends xmlElement_1.XMLElement {
constructor(id = null, activityGroupId = null, name = null, expectedURL = null, status = null, type = null) {
super();
this.id = id;
this.activityGroupId = activityGroupId;
this.name = name;
this.expectedURL = expectedURL;
this.status = status;
this.type = type;
}
}
Activity.XSI_TYPE = "Activity";
exports.Activity = Activity;