UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 913 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StreamInput = void 0; var Mapper_1 = require("../common/Mapper"); var EncodingStreamInputDetails_1 = require("./EncodingStreamInputDetails"); /** * @export * @class StreamInput */ var StreamInput = /** @class */ (function () { function StreamInput(obj) { if (!obj) { return; } this.inputId = (0, Mapper_1.map)(obj.inputId); this.inputPath = (0, Mapper_1.map)(obj.inputPath); this.selectionMode = (0, Mapper_1.map)(obj.selectionMode); this.position = (0, Mapper_1.map)(obj.position); this.inputStreamId = (0, Mapper_1.map)(obj.inputStreamId); this.analysisDetails = (0, Mapper_1.map)(obj.analysisDetails, EncodingStreamInputDetails_1.default); } return StreamInput; }()); exports.StreamInput = StreamInput; exports.default = StreamInput;