diffusion
Version:
Diffusion JavaScript client
16 lines (12 loc) • 329 B
JavaScript
var Will = {
REMOVE_TOPICS : 0
};
function TopicWillParameters(path, will) {
this.path = path;
this.will = will;
}
TopicWillParameters.prototype.toString = function() {
return "TopicWillParams [" + this.will + ", " + this.path + "]";
};
TopicWillParameters.Will = Will;
module.exports = TopicWillParameters;