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.DashCmafRepresentation = void 0; const DashRepresentationTypeDiscriminator_1 = require("./DashRepresentationTypeDiscriminator"); const DashSegmentedRepresentation_1 = require("./DashSegmentedRepresentation"); /** * @export * @class DashCmafRepresentation */ class DashCmafRepresentation extends DashSegmentedRepresentation_1.default { constructor(obj) { super(obj); /** * Discriminator property for DashRepresentation * @type {string} * @memberof DashCmafRepresentation */ this.typeDiscriminator = DashRepresentationTypeDiscriminator_1.default.CMAF; if (!obj) { return; } } } exports.DashCmafRepresentation = DashCmafRepresentation; exports.default = DashCmafRepresentation;