diffusion
Version:
Diffusion JavaScript client
22 lines (21 loc) • 636 B
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetSessionPropertiesResponse = void 0;
/**
* Server response from a GET_SESSION_PROPERTIES request.
*/
var GetSessionPropertiesResponse = /** @class */ (function () {
/**
* Create a new GetSessionPropertiesResponse instance
*
* @param properties the session properties
*/
function GetSessionPropertiesResponse(properties) {
this.properties = properties;
}
return GetSessionPropertiesResponse;
}());
exports.GetSessionPropertiesResponse = GetSessionPropertiesResponse;