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