UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

23 lines (22 loc) 705 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EgressInformation = void 0; var Mapper_1 = require("../common/Mapper"); /** * @export * @class EgressInformation */ var EgressInformation = /** @class */ (function () { function EgressInformation(obj) { if (!obj) { return; } this.category = (0, Mapper_1.map)(obj.category); this.bytes = (0, Mapper_1.map)(obj.bytes); this.outputType = (0, Mapper_1.map)(obj.outputType); this.outputRegion = (0, Mapper_1.map)(obj.outputRegion); } return EgressInformation; }()); exports.EgressInformation = EgressInformation; exports.default = EgressInformation;