@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
54 lines (53 loc) • 1.05 kB
TypeScript
/**
* @export
* @class SrtStatisticRecv
*/
export declare class SrtStatisticRecv {
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
bytes?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
bytesDropped?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
bytesLost?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
mbitRate?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
packets?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
packetsBelated?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
packetsDropped?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
packetsLost?: number;
/**
* @type {number}
* @memberof SrtStatisticRecv
*/
packetsRetransmitted?: number;
constructor(obj?: Partial<SrtStatisticRecv>);
}
export default SrtStatisticRecv;