diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 688 B
JavaScript
;
/**
* @module Services.TopicNotifications
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TopicNotificationSelection = void 0;
/**
* Data type for a TOPIC_NOTIFICATION_SELECTION request.
*/
var TopicNotificationSelection = /** @class */ (function () {
/**
* Create a new TopicNotificationSelection instance
*
* @param cid the conversation ID
* @param selector the topic selector
*/
function TopicNotificationSelection(cid, selector) {
this.cid = cid;
this.selector = selector;
}
return TopicNotificationSelection;
}());
exports.TopicNotificationSelection = TopicNotificationSelection;