UNPKG

diffusion

Version:

Diffusion JavaScript client

24 lines (23 loc) 704 B
"use strict"; /** * @module Services.TopicNotifications */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TopicNotificationDeselection = void 0; /** * Data type for a TOPIC_NOTIFICATION_DESELECTION request. */ var TopicNotificationDeselection = /** @class */ (function () { /** * Create a new TopicNotificationDeselection instance * * @param cid the conversation ID * @param selector the topic selector */ function TopicNotificationDeselection(cid, selector) { this.cid = cid; this.selector = selector; } return TopicNotificationDeselection; }()); exports.TopicNotificationDeselection = TopicNotificationDeselection;