@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 562 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SrtStatisticLink = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* @export
* @class SrtStatisticLink
*/
class SrtStatisticLink {
constructor(obj) {
if (!obj) {
return;
}
this.bandwidth = (0, Mapper_1.map)(obj.bandwidth);
this.maxBandwidth = (0, Mapper_1.map)(obj.maxBandwidth);
this.rtt = (0, Mapper_1.map)(obj.rtt);
}
}
exports.SrtStatisticLink = SrtStatisticLink;
exports.default = SrtStatisticLink;