sinch-rtc
Version:
RTC JavaScript/Web SDK
35 lines (34 loc) • 1.03 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.
*/
import { SemanticVersion, WarningEvent } from './';
/**
* Object containing information about call quality properties of the call
* @export
* @interface CallQuality
*/
export interface CallQuality {
/**
*
* @type {Array<WarningEvent>}
* @memberof CallQuality
*/
warningEvents: Array<WarningEvent>;
/**
*
* @type {SemanticVersion}
* @memberof CallQuality
*/
semanticVersion: SemanticVersion;
}
export declare function CallQualityFromJSON(json: any): CallQuality;
export declare function CallQualityFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallQuality;
export declare function CallQualityToJSON(value?: CallQuality | null): any;