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