diffusion
Version:
Diffusion JavaScript client
26 lines (25 loc) • 712 B
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessagingSendRequest = void 0;
/**
* Data type for a MESSAGING_SEND request.
*/
var MessagingSendRequest = /** @class */ (function () {
/**
* Create a new MessagingSendRequest instance
*
* @param path the message path
* @param dataType the datatype of the message
* @param request the message data
*/
function MessagingSendRequest(path, dataType, request) {
this.path = path;
this.dataType = dataType;
this.request = request;
}
return MessagingSendRequest;
}());
exports.MessagingSendRequest = MessagingSendRequest;