UNPKG

diffusion

Version:

Diffusion JavaScript client

26 lines (25 loc) 811 B
"use strict"; /** * @module Services.Control */ Object.defineProperty(exports, "__esModule", { value: true }); exports.MessagingClientForwardSendRequest = void 0; /** * Data type for a MESSAGING_RECEIVER_CLIENT request. */ var MessagingClientForwardSendRequest = /** @class */ (function () { /** * Create a new MessagingClientForwardSendRequest instance * */ function MessagingClientForwardSendRequest(cid, sessionID, path, properties, dataType, content) { this.cid = cid; this.sessionID = sessionID; this.path = path; this.properties = properties; this.dataType = dataType; this.content = content; } return MessagingClientForwardSendRequest; }()); exports.MessagingClientForwardSendRequest = MessagingClientForwardSendRequest;