UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 913 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SceneAnalysisListItem = void 0; const Mapper_1 = require("../common/Mapper"); /** * @export * @class SceneAnalysisListItem */ class SceneAnalysisListItem { constructor(obj) { if (!obj) { return; } this.id = (0, Mapper_1.map)(obj.id); this.encodingId = (0, Mapper_1.map)(obj.encodingId); this.createdAt = (0, Mapper_1.map)(obj.createdAt, Date); this.description = (0, Mapper_1.map)(obj.description); this.title = (0, Mapper_1.map)(obj.title); this.keywords = (0, Mapper_1.mapArray)(obj.keywords); this.sceneCount = (0, Mapper_1.map)(obj.sceneCount); this.outputLanguageCodes = (0, Mapper_1.mapArray)(obj.outputLanguageCodes); } } exports.SceneAnalysisListItem = SceneAnalysisListItem; exports.default = SceneAnalysisListItem;