Interface BatchWorkflowRunCreateRequest._FinalStage
-
- All Known Implementing Classes:
BatchWorkflowRunCreateRequest.Builder
- Enclosing class:
- BatchWorkflowRunCreateRequest
public static interface BatchWorkflowRunCreateRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchWorkflowRunCreateRequest._FinalStageaddAllInputs(java.util.List<BatchWorkflowRunCreateRequestInputsItem> inputs)BatchWorkflowRunCreateRequest._FinalStageaddInputs(BatchWorkflowRunCreateRequestInputsItem inputs)BatchWorkflowRunCreateRequestbuild()BatchWorkflowRunCreateRequest._FinalStageinputs(java.util.List<BatchWorkflowRunCreateRequestInputsItem> inputs)An array of input objects to be processed by the workflow.BatchWorkflowRunCreateRequest._FinalStageversion(java.lang.String version)BatchWorkflowRunCreateRequest._FinalStageversion(java.util.Optional<java.lang.String> version)An optional version of the workflow to use.
-
-
-
Method Detail
-
build
BatchWorkflowRunCreateRequest build()
-
version
BatchWorkflowRunCreateRequest._FinalStage version(java.util.Optional<java.lang.String> version)
An optional version of the workflow to use. This can be a specific version number (e.g.,
"1","2") found on the Extend platform, or"draft"to use the current unpublished draft version. When a version is not supplied, the latest deployed version of the workflow will be used. If no deployed version exists, the draft version will be used.
-
version
BatchWorkflowRunCreateRequest._FinalStage version(java.lang.String version)
-
inputs
BatchWorkflowRunCreateRequest._FinalStage inputs(java.util.List<BatchWorkflowRunCreateRequestInputsItem> inputs)
An array of input objects to be processed by the workflow. Each object represents a single workflow run to be created. The array must contain at least 1 input and at most 1000 inputs.
-
addInputs
BatchWorkflowRunCreateRequest._FinalStage addInputs(BatchWorkflowRunCreateRequestInputsItem inputs)
-
addAllInputs
BatchWorkflowRunCreateRequest._FinalStage addAllInputs(java.util.List<BatchWorkflowRunCreateRequestInputsItem> inputs)
-
-