UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 582 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AgentSessionResponse = void 0; const Mapper_1 = require("../common/Mapper"); /** * @export * @class AgentSessionResponse */ class AgentSessionResponse { constructor(obj) { if (!obj) { return; } this.sessionId = (0, Mapper_1.map)(obj.sessionId); this.appName = (0, Mapper_1.map)(obj.appName); this.userId = (0, Mapper_1.map)(obj.userId); } } exports.AgentSessionResponse = AgentSessionResponse; exports.default = AgentSessionResponse;