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