@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
20 lines (19 loc) • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Ignoring = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* @export
* @class Ignoring
*/
class Ignoring {
constructor(obj) {
if (!obj) {
return;
}
this.ignoredBy = (0, Mapper_1.map)(obj.ignoredBy);
this.ignoredByDescription = (0, Mapper_1.map)(obj.ignoredByDescription);
}
}
exports.Ignoring = Ignoring;
exports.default = Ignoring;