UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 859 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DashFmp4Representation = void 0; const DashRepresentationTypeDiscriminator_1 = require("./DashRepresentationTypeDiscriminator"); const DashSegmentedRepresentation_1 = require("./DashSegmentedRepresentation"); /** * @export * @class DashFmp4Representation */ class DashFmp4Representation extends DashSegmentedRepresentation_1.default { constructor(obj) { super(obj); /** * Discriminator property for DashRepresentation * @type {string} * @memberof DashFmp4Representation */ this.typeDiscriminator = DashRepresentationTypeDiscriminator_1.default.FMP4; if (!obj) { return; } } } exports.DashFmp4Representation = DashFmp4Representation; exports.default = DashFmp4Representation;