@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
24 lines (23 loc) • 831 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LiveEncodingHeartbeatIngestPoint = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* Details about an individual ingestPoint within the live ingest.
* @export
* @class LiveEncodingHeartbeatIngestPoint
*/
class LiveEncodingHeartbeatIngestPoint {
constructor(obj) {
if (!obj) {
return;
}
this.name = (0, Mapper_1.map)(obj.name);
this.inputId = (0, Mapper_1.map)(obj.inputId);
this.inputType = (0, Mapper_1.map)(obj.inputType);
this.isActive = (0, Mapper_1.map)(obj.isActive);
this.isBackup = (0, Mapper_1.map)(obj.isBackup);
}
}
exports.LiveEncodingHeartbeatIngestPoint = LiveEncodingHeartbeatIngestPoint;
exports.default = LiveEncodingHeartbeatIngestPoint;