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