UNPKG

diffusion

Version:

Diffusion JavaScript client

31 lines (30 loc) 935 B
"use strict"; /** * @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; } /** * Convert object to string * * @return a string representation of the GetSessionPropertiesRequest object */ GetSessionPropertiesRequest.prototype.toString = function () { return 'GetSessionPropertiesRequest []'; }; return GetSessionPropertiesRequest; }()); exports.GetSessionPropertiesRequest = GetSessionPropertiesRequest;