diffusion
Version:
Diffusion JavaScript client
23 lines (22 loc) • 675 B
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetSessionPropertiesRequest = void 0;
/**
* Data type for a GET_SESSION_PROPERTIES request.
*/
var GetSessionPropertiesRequest = /** @class */ (function () {
/**
* Create a new GetSessionPropertiesRequest instance
*
* @param properties the session properties
*/
function GetSessionPropertiesRequest(sessionID, propertyKeys) {
this.sessionID = sessionID;
this.propertyKeys = propertyKeys;
}
return GetSessionPropertiesRequest;
}());
exports.GetSessionPropertiesRequest = GetSessionPropertiesRequest;