sinch-rtc
Version:
RTC JavaScript/Web SDK
31 lines (30 loc) • 1.2 kB
TypeScript
/**
* 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.
*/
/**
* The name of the call quality warning
* @export
* @enum {string}
*/
export declare enum WarningEventName {
HighRemoteInboundRtt = "highRemoteInboundRtt",
HighInboundJitter = "highInboundJitter",
HighInboundPacketLoss = "highInboundPacketLoss",
MissingMediaStream = "missingMediaStream",
ConstantInboundAudioLevel = "constantInboundAudioLevel",
ConstantOutboundAudioLevel = "constantOutboundAudioLevel",
LowOsOutputVolumeLevel = "lowOSOutputVolumeLevel",
ZeroInboundAudioLevel = "zeroInboundAudioLevel",
ZeroOutboundAudioLevel = "zeroOutboundAudioLevel"
}
export declare function WarningEventNameFromJSON(json: any): WarningEventName;
export declare function WarningEventNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): WarningEventName;
export declare function WarningEventNameToJSON(value?: WarningEventName | null): any;