@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 636 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Statistics = void 0;
var Mapper_1 = require("../common/Mapper");
/**
* @export
* @class Statistics
*/
var Statistics = /** @class */ (function () {
function Statistics(obj) {
if (!obj) {
return;
}
this.bytesEncodedTotal = (0, Mapper_1.map)(obj.bytesEncodedTotal);
this.timeEncodedTotal = (0, Mapper_1.map)(obj.timeEncodedTotal);
this.bytesEgressTotal = (0, Mapper_1.map)(obj.bytesEgressTotal);
}
return Statistics;
}());
exports.Statistics = Statistics;
exports.default = Statistics;