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