UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 718 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ImageAdaptationSet = void 0; const AdaptationSet_1 = require("./AdaptationSet"); const AdaptationSetType_1 = require("./AdaptationSetType"); /** * @export * @class ImageAdaptationSet */ class ImageAdaptationSet extends AdaptationSet_1.default { constructor(obj) { super(obj); /** * Discriminator property for AdaptationSet * @type {string} * @memberof ImageAdaptationSet */ this.type = AdaptationSetType_1.default.IMAGE; if (!obj) { return; } } } exports.ImageAdaptationSet = ImageAdaptationSet; exports.default = ImageAdaptationSet;