UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 688 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AgentSessionListItem = void 0; var Mapper_1 = require("../common/Mapper"); /** * @export * @class AgentSessionListItem */ var AgentSessionListItem = /** @class */ (function () { function AgentSessionListItem(obj) { if (!obj) { return; } this.sessionId = (0, Mapper_1.map)(obj.sessionId); this.title = (0, Mapper_1.map)(obj.title); this.lastUpdateTimeSeconds = (0, Mapper_1.map)(obj.lastUpdateTimeSeconds); } return AgentSessionListItem; }()); exports.AgentSessionListItem = AgentSessionListItem; exports.default = AgentSessionListItem;