/** * @export * @class WatchFolderOutput */ export declare class WatchFolderOutput { /** * Id of the corresponding output (required) * @type {string} * @memberof WatchFolderOutput */ outputId?: string; /** * Subdirectory where to save the files to (required) * @type {string} * @memberof WatchFolderOutput */ outputPath?: string; constructor(obj?: Partial); } export default WatchFolderOutput;