interface ConnectionStatsReport {
    audioConcealment: Map<string, AudioConcealment>;
    bandwidth: ConnectionStatsBandwidth;
    bitrate: ConnectionStatsBitrate;
    callId?: string;
    codec: CodecMap;
    framerate: FramerateMap;
    jitter: Map<string, number>;
    opponentMemberId?: string;
    packetLoss: PacketLoss;
    resolution: ResolutionMap;
    totalAudioConcealment: AudioConcealment;
    transport: TransportStats[];
}

Properties

audioConcealment: Map<string, AudioConcealment>
callId?: string
codec: CodecMap
framerate: FramerateMap
jitter: Map<string, number>
opponentMemberId?: string
packetLoss: PacketLoss
resolution: ResolutionMap
totalAudioConcealment: AudioConcealment
transport: TransportStats[]