windmill-api 1.684.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
# FlowValue

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**modules** | [**Vec<models::FlowModule>**]FlowModule.md | Array of steps that execute in sequence. Each step can be a script, subflow, loop, or branch | 
**failure_module** | Option<[**models::FlowModule**]FlowModule.md> |  | [optional]
**preprocessor_module** | Option<[**models::FlowModule**]FlowModule.md> |  | [optional]
**same_worker** | Option<**bool**> | If true, all steps run on the same worker for better performance | [optional]
**concurrent_limit** | Option<**f64**> | Maximum number of concurrent executions of this flow | [optional]
**concurrency_key** | Option<**String**> | Expression to group concurrent executions (e.g., by user ID) | [optional]
**concurrency_time_window_s** | Option<**f64**> | Time window in seconds for concurrent_limit | [optional]
**debounce_delay_s** | Option<**i32**> | Delay in seconds to debounce flow executions | [optional]
**debounce_key** | Option<**String**> | Expression to group debounced executions | [optional]
**debounce_args_to_accumulate** | Option<**Vec<String>**> | Arguments to accumulate across debounced executions | [optional]
**max_total_debouncing_time** | Option<**i32**> | Maximum total time in seconds that a job can be debounced | [optional]
**max_total_debounces_amount** | Option<**i32**> | Maximum number of times a job can be debounced | [optional]
**skip_expr** | Option<**String**> | JavaScript expression to conditionally skip the entire flow | [optional]
**cache_ttl** | Option<**f64**> | Cache duration in seconds for flow results | [optional]
**cache_ignore_s3_path** | Option<**bool**> |  | [optional]
**delete_after_secs** | Option<**i32**> | If set, delete the flow job's args, result and logs after this many seconds following job completion | [optional]
**flow_env** | Option<[**std::collections::HashMap<String, serde_json::Value>**]serde_json::Value.md> | Environment variables available to all steps. Values can be strings, JSON values, or special references: '$var:path' (workspace variable) or '$res:path' (resource). | [optional]
**priority** | Option<**f64**> | Execution priority (higher numbers run first) | [optional]
**early_return** | Option<**String**> | JavaScript expression to return early from the flow | [optional]
**chat_input_enabled** | Option<**bool**> | Whether this flow accepts chat-style input | [optional]
**notes** | Option<[**Vec<models::FlowNote>**]FlowNote.md> | Sticky notes attached to the flow | [optional]
**groups** | Option<[**Vec<models::FlowGroup>**]FlowGroup.md> | Semantic groups of modules for organizational purposes | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)