sinch-rtc
Version:
RTC JavaScript/Web SDK
46 lines • 1.83 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* Ocra (REST API for Sinch RTC clients)
* REST API for Sinch RTC clients.
*
* The version of the OpenAPI document: 0.11.0
* Contact: rtc@sinch.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.WarningEventName = void 0;
exports.WarningEventNameFromJSON = WarningEventNameFromJSON;
exports.WarningEventNameFromJSONTyped = WarningEventNameFromJSONTyped;
exports.WarningEventNameToJSON = WarningEventNameToJSON;
/**
* The name of the call quality warning
* @export
* @enum {string}
*/
var WarningEventName;
(function (WarningEventName) {
WarningEventName["HighRemoteInboundRtt"] = "highRemoteInboundRtt";
WarningEventName["HighInboundJitter"] = "highInboundJitter";
WarningEventName["HighInboundPacketLoss"] = "highInboundPacketLoss";
WarningEventName["MissingMediaStream"] = "missingMediaStream";
WarningEventName["ConstantInboundAudioLevel"] = "constantInboundAudioLevel";
WarningEventName["ConstantOutboundAudioLevel"] = "constantOutboundAudioLevel";
WarningEventName["LowOsOutputVolumeLevel"] = "lowOSOutputVolumeLevel";
WarningEventName["ZeroInboundAudioLevel"] = "zeroInboundAudioLevel";
WarningEventName["ZeroOutboundAudioLevel"] = "zeroOutboundAudioLevel";
})(WarningEventName || (exports.WarningEventName = WarningEventName = {}));
function WarningEventNameFromJSON(json) {
return WarningEventNameFromJSONTyped(json, false);
}
function WarningEventNameFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
function WarningEventNameToJSON(value) {
return value;
}
//# sourceMappingURL=WarningEventName.js.map