diffusion
Version:
Diffusion JavaScript client
29 lines (28 loc) • 1.01 kB
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageReceiverControlRegistrationParams = void 0;
/**
* Data type for the MESSAGE_RECEIVER_CONTROL_DEREGISTRATION and
* MESSAGING_RECEIVER_CONTROL_DEREGISTRATION requests.
*/
var MessageReceiverControlRegistrationParams = /** @class */ (function () {
/**
* Create a new MessageReceiverControlRegistrationParams instance
*
* @param definition the service definition
* @param group the control group
* @param path the message path
* @param keys the registration parameter keys
*/
function MessageReceiverControlRegistrationParams(definition, group, path, keys) {
this.definition = definition;
this.group = group;
this.path = path;
this.keys = keys;
}
return MessageReceiverControlRegistrationParams;
}());
exports.MessageReceiverControlRegistrationParams = MessageReceiverControlRegistrationParams;