diffusion
Version:
Diffusion JavaScript client
30 lines (29 loc) • 878 B
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessagingFilterSendRequest = void 0;
/**
* Data type for a MESSAGING_FILTER_SEND request.
*/
var MessagingFilterSendRequest = /** @class */ (function () {
/**
* Create a new MessagingFilterSendRequest instance
*
* @param cid the conversation ID
* @param filter the filter
* @param path the path
* @param dataType the data type
* @param request the request data
*/
function MessagingFilterSendRequest(cid, filter, path, dataType, request) {
this.cid = cid;
this.filter = filter;
this.path = path;
this.dataType = dataType;
this.request = request;
}
return MessagingFilterSendRequest;
}());
exports.MessagingFilterSendRequest = MessagingFilterSendRequest;