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