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