@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
25 lines (24 loc) • 790 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RtmpUserIngestInfo = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* Details about user info from rtmp ingest.
* @export
* @class RtmpUserIngestInfo
*/
class RtmpUserIngestInfo {
constructor(obj) {
if (!obj) {
return;
}
this.address = (0, Mapper_1.map)(obj.address);
this.app = (0, Mapper_1.map)(obj.app);
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
this.flashVersion = (0, Mapper_1.map)(obj.flashVersion);
this.clientId = (0, Mapper_1.map)(obj.clientId);
this.eventType = (0, Mapper_1.map)(obj.eventType);
}
}
exports.RtmpUserIngestInfo = RtmpUserIngestInfo;
exports.default = RtmpUserIngestInfo;