UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

23 lines (22 loc) 784 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StaticRtmpIngestPoint = void 0; var Mapper_1 = require("../common/Mapper"); var StreamKeyConfiguration_1 = require("./StreamKeyConfiguration"); /** * @export * @class StaticRtmpIngestPoint */ var StaticRtmpIngestPoint = /** @class */ (function () { function StaticRtmpIngestPoint(obj) { if (!obj) { return; } this.id = (0, Mapper_1.map)(obj.id); this.name = (0, Mapper_1.map)(obj.name); this.streamKeyConfiguration = (0, Mapper_1.map)(obj.streamKeyConfiguration, StreamKeyConfiguration_1.default); } return StaticRtmpIngestPoint; }()); exports.StaticRtmpIngestPoint = StaticRtmpIngestPoint; exports.default = StaticRtmpIngestPoint;