UNPKG

diffusion

Version:

Diffusion JavaScript client

24 lines (23 loc) 676 B
"use strict"; /** * @module Services.TopicUpdate */ Object.defineProperty(exports, "__esModule", { value: true }); exports.UpdateStreamRequest = void 0; /** * Data type for a STREAM_SET_TOPIC_SERVICE or STREAM_APPLY_DELTA_SERVICE request. */ var UpdateStreamRequest = /** @class */ (function () { /** * Create a new UpdateStreamRequest instance * * @param streamId the id of the update stream * @param update the data to send */ function UpdateStreamRequest(streamId, update) { this.streamId = streamId; this.update = update; } return UpdateStreamRequest; }()); exports.UpdateStreamRequest = UpdateStreamRequest;