/** * @export * @class WatchFolderInput */ export declare class WatchFolderInput { /** * Input id (required) * @type {string} * @memberof WatchFolderInput */ inputId?: string; /** * Path of the directory to monitor (required) * @type {string} * @memberof WatchFolderInput */ inputPath?: string; constructor(obj?: Partial); } export default WatchFolderInput;