@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
44 lines (43 loc) • 857 B
TypeScript
/**
* @export
* @class SrtStatisticSend
*/
export declare class SrtStatisticSend {
/**
* @type {number}
* @memberof SrtStatisticSend
*/
bytes?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
bytesDropped?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
mbitRate?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
packets?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
packetsDropped?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
packetsLost?: number;
/**
* @type {number}
* @memberof SrtStatisticSend
*/
packetsRetransmitted?: number;
constructor(obj?: Partial<SrtStatisticSend>);
}
export default SrtStatisticSend;