vani-meeting-client-sdk
Version:
Vani Meeting Clinet SDK
30 lines (29 loc) • 1.03 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MeetingStartRequest = void 0;
var MeetingStartRequest = /** @class */ (function () {
function MeetingStartRequest(_roomId, _userId, _appId, _wssUrl) {
this.videoCaptureWidth = 0;
this.videoCaptureHeight = 0;
this.defaultWhiteboardEditEnable = true;
this.numberOfUsers = 10;
this.isAdmin = false;
this.userData = {};
this.apiData = {};
this.isMobileApp = false;
this.shouldForceTurn = false;
this.minBitrateConfig = 40000;
this.maxBitRateConfig = 620000;
this.logLevel = "TRACE";
this.isRecordingUser = false;
this.roomId = _roomId;
this.userId = _userId;
this.appId = _appId;
if (_wssUrl.indexOf("connection=") < 0) {
_wssUrl = _wssUrl + "/?connection=";
}
this.wssUrl = _wssUrl;
}
return MeetingStartRequest;
}());
exports.MeetingStartRequest = MeetingStartRequest;