UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 604 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SourceChannel = void 0; var Mapper_1 = require("../common/Mapper"); /** * @export * @class SourceChannel */ var SourceChannel = /** @class */ (function () { function SourceChannel(obj) { if (!obj) { return; } this.gain = (0, Mapper_1.map)(obj.gain); this.type = (0, Mapper_1.map)(obj.type); this.channelNumber = (0, Mapper_1.map)(obj.channelNumber); } return SourceChannel; }()); exports.SourceChannel = SourceChannel; exports.default = SourceChannel;