diffusion
Version:
Diffusion JavaScript client
26 lines (25 loc) • 826 B
JavaScript
;
/**
* @module Services.TopicUpdate
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.UpdateStreamAddTopicRequest = void 0;
/**
* Data type for a STREAM_ADD_TOPIC_SERVICE request.
*/
var UpdateStreamAddTopicRequest = /** @class */ (function () {
/**
* Create a new UpdateStreamAddTopicRequest instance
*
* @param path the topic path
* @param topicSpecification the topic specification
* @param constraint the update constraint
*/
function UpdateStreamAddTopicRequest(path, topicSpecification, constraint) {
this.path = path;
this.topicSpecification = topicSpecification;
this.constraint = constraint;
}
return UpdateStreamAddTopicRequest;
}());
exports.UpdateStreamAddTopicRequest = UpdateStreamAddTopicRequest;