UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 942 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LiveStandbyPoolEventLog = void 0; var Mapper_1 = require("../common/Mapper"); /** * @export * @class LiveStandbyPoolEventLog */ var LiveStandbyPoolEventLog = /** @class */ (function () { function LiveStandbyPoolEventLog(obj) { if (!obj) { return; } this.id = (0, Mapper_1.map)(obj.id); this.standbyPoolId = (0, Mapper_1.map)(obj.standbyPoolId); this.standbyPoolEncodingId = (0, Mapper_1.map)(obj.standbyPoolEncodingId); this.createdAt = (0, Mapper_1.map)(obj.createdAt); this.message = (0, Mapper_1.map)(obj.message); this.details = (0, Mapper_1.map)(obj.details); this.eventType = (0, Mapper_1.map)(obj.eventType); } return LiveStandbyPoolEventLog; }()); exports.LiveStandbyPoolEventLog = LiveStandbyPoolEventLog; exports.default = LiveStandbyPoolEventLog;