UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 933 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DashImscRepresentation = void 0; const Mapper_1 = require("../common/Mapper"); const DashRepresentation_1 = require("./DashRepresentation"); const DashRepresentationTypeDiscriminator_1 = require("./DashRepresentationTypeDiscriminator"); /** * @export * @class DashImscRepresentation */ class DashImscRepresentation extends DashRepresentation_1.default { constructor(obj) { super(obj); /** * Discriminator property for DashRepresentation * @type {string} * @memberof DashImscRepresentation */ this.typeDiscriminator = DashRepresentationTypeDiscriminator_1.default.IMSC; if (!obj) { return; } this.imscUrl = (0, Mapper_1.map)(obj.imscUrl); } } exports.DashImscRepresentation = DashImscRepresentation; exports.default = DashImscRepresentation;