/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

export type WorkflowExecutionIn = {
    /**
     * Workflow version git commit hash
     */
    workflow_version_id: string;
    /**
     * Optional notes for this workflow execution
     */
    notes?: string;
    /**
     * Parameters for this workflow
     */
    parameters: any;
    /**
     * Bucket where to save the Nextflow report. If None, no report will be generated. With our without prefix 's3://'
     */
    report_output_bucket?: string;
};