@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
29 lines (28 loc) • 994 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DashMp4Representation = void 0;
const Mapper_1 = require("../common/Mapper");
const DashMuxingRepresentation_1 = require("./DashMuxingRepresentation");
const DashRepresentationTypeDiscriminator_1 = require("./DashRepresentationTypeDiscriminator");
/**
* @export
* @class DashMp4Representation
*/
class DashMp4Representation extends DashMuxingRepresentation_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for DashRepresentation
* @type {string}
* @memberof DashMp4Representation
*/
this.typeDiscriminator = DashRepresentationTypeDiscriminator_1.default.MP4;
if (!obj) {
return;
}
this.filePath = (0, Mapper_1.map)(obj.filePath);
this.type = (0, Mapper_1.map)(obj.type);
}
}
exports.DashMp4Representation = DashMp4Representation;
exports.default = DashMp4Representation;