diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 649 B
JavaScript
;
/**
* @module Services.TopicAdd
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TopicAddRequest = void 0;
/**
* Data type for a TOPIC_ADD request.
*/
var TopicAddRequest = /** @class */ (function () {
/**
* Create a new TopicAddRequest instance
*
* @param path the path of the topic to add
* @param specification the topic specification of the topic to add
*/
function TopicAddRequest(path, specification) {
this.path = path;
this.specification = specification;
}
return TopicAddRequest;
}());
exports.TopicAddRequest = TopicAddRequest;