@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
26 lines (25 loc) • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RtmpInput = void 0;
const Input_1 = require("./Input");
const InputType_1 = require("./InputType");
/**
* @export
* @class RtmpInput
*/
class RtmpInput extends Input_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for Input
* @type {string}
* @memberof RtmpInput
*/
this.type = InputType_1.default.RTMP;
if (!obj) {
return;
}
}
}
exports.RtmpInput = RtmpInput;
exports.default = RtmpInput;