diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 683 B
JavaScript
;
/**
* @module Services.Control
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SessionPropertiesEventBatch = void 0;
/**
* Data type for a SESSION_PROPERTIES_EVENT_2 request.
*/
var SessionPropertiesEventBatch = /** @class */ (function () {
/**
* Create a new SessionPropertiesEventBatch instance
*
* @param cid the conversation ID
* @param events the session property events
*/
function SessionPropertiesEventBatch(cid, events) {
this.cid = cid;
this.events = events;
}
return SessionPropertiesEventBatch;
}());
exports.SessionPropertiesEventBatch = SessionPropertiesEventBatch;