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