Interface SplitStepDefinition._FinalStage
-
- All Known Implementing Classes:
SplitStepDefinition.Builder
- Enclosing class:
- SplitStepDefinition
public static interface SplitStepDefinition._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SplitStepDefinitionbuild()SplitStepDefinition._FinalStageconfig(SplitStepDefinitionConfig config)SplitStepDefinition._FinalStageconfig(java.util.Optional<SplitStepDefinitionConfig> config)Optional on create/update.SplitStepDefinition._FinalStagenext(java.util.List<ClassificationNextEntry> next)SplitStepDefinition._FinalStagenext(java.util.Optional<java.util.List<ClassificationNextEntry>> next)Can only be set whenconfigis present.
-
-
-
Method Detail
-
build
SplitStepDefinition build()
-
config
SplitStepDefinition._FinalStage config(java.util.Optional<SplitStepDefinitionConfig> config)
Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured.
Reference to the splitter used by this step. The
next[].classificationIdvalues must match split classificationidvalues (nottypestrings) from the referenced splitter's configuration. For example, if the splitter defines{ "id": "cls_receipt", "type": "receipt" }, use"cls_receipt"as theclassificationId.The splitter
versionis required and must be a pinned version (semver like"0.1"or"draft")."latest"is not allowed.See the Split step docs.
-
config
SplitStepDefinition._FinalStage config(SplitStepDefinitionConfig config)
-
next
SplitStepDefinition._FinalStage next(java.util.Optional<java.util.List<ClassificationNextEntry>> next)
Can only be set when
configis present. Each entry must include aclassificationIdmatching a split classificationidfrom the referenced splitter's configuration. Use the classification's stableid(e.g."cls_receipt"), not thetypestring.See the Split step docs.
-
next
SplitStepDefinition._FinalStage next(java.util.List<ClassificationNextEntry> next)
-
-