Interface WorkflowRunSummary._FinalStage
-
- All Known Implementing Classes:
WorkflowRunSummary.Builder
- Enclosing class:
- WorkflowRunSummary
public static interface WorkflowRunSummary._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowRunSummary._FinalStagebatchId(java.lang.String batchId)WorkflowRunSummary._FinalStagebatchId(java.util.Optional<java.lang.String> batchId)The batch ID of the WorkflowRun.WorkflowRunSummarybuild()WorkflowRunSummary._FinalStageendTime(java.time.OffsetDateTime endTime)WorkflowRunSummary._FinalStageendTime(java.util.Optional<java.time.OffsetDateTime> endTime)The end time (in UTC) that the workflow finished.WorkflowRunSummary._FinalStageinitialRunAt(java.time.OffsetDateTime initialRunAt)WorkflowRunSummary._FinalStageinitialRunAt(java.util.Optional<java.time.OffsetDateTime> initialRunAt)The time (in UTC) at which the workflow was initially created.WorkflowRunSummary._FinalStagerejectionNote(java.lang.String rejectionNote)WorkflowRunSummary._FinalStagerejectionNote(java.util.Optional<java.lang.String> rejectionNote)The note that was added when the workflow run was rejected.WorkflowRunSummary._FinalStagereviewedAt(java.time.OffsetDateTime reviewedAt)WorkflowRunSummary._FinalStagereviewedAt(java.util.Optional<java.time.OffsetDateTime> reviewedAt)The time (in UTC) at which the workflow run was reviewed.WorkflowRunSummary._FinalStagereviewedByUser(java.lang.String reviewedByUser)WorkflowRunSummary._FinalStagereviewedByUser(java.util.Optional<java.lang.String> reviewedByUser)The user of the person who reviewed the workflow run.WorkflowRunSummary._FinalStagestartTime(java.time.OffsetDateTime startTime)WorkflowRunSummary._FinalStagestartTime(java.util.Optional<java.time.OffsetDateTime> startTime)The start time (in UTC) that the workflow actually started executing.
-
-
-
Method Detail
-
build
WorkflowRunSummary build()
-
initialRunAt
WorkflowRunSummary._FinalStage initialRunAt(java.util.Optional<java.time.OffsetDateTime> initialRunAt)
The time (in UTC) at which the workflow was initially created. Will follow the RFC 3339 format.
Example:
"2024-03-21T15:30:00Z"
-
initialRunAt
WorkflowRunSummary._FinalStage initialRunAt(java.time.OffsetDateTime initialRunAt)
-
reviewedByUser
WorkflowRunSummary._FinalStage reviewedByUser(java.util.Optional<java.lang.String> reviewedByUser)
The user of the person who reviewed the workflow run. Will not be included if the workflow run has not been reviewed.
Example:
"jane.doe@example.com"
-
reviewedByUser
WorkflowRunSummary._FinalStage reviewedByUser(java.lang.String reviewedByUser)
-
reviewedAt
WorkflowRunSummary._FinalStage reviewedAt(java.util.Optional<java.time.OffsetDateTime> reviewedAt)
The time (in UTC) at which the workflow run was reviewed. Will follow the RFC 3339 format.
Example:
"2024-03-21T16:45:00Z"
-
reviewedAt
WorkflowRunSummary._FinalStage reviewedAt(java.time.OffsetDateTime reviewedAt)
-
startTime
WorkflowRunSummary._FinalStage startTime(java.util.Optional<java.time.OffsetDateTime> startTime)
The start time (in UTC) that the workflow actually started executing. This occurs after the
initialRunAttime. Will follow the RFC 3339 format.Example:
"2024-03-21T15:30:00Z"
-
startTime
WorkflowRunSummary._FinalStage startTime(java.time.OffsetDateTime startTime)
-
endTime
WorkflowRunSummary._FinalStage endTime(java.util.Optional<java.time.OffsetDateTime> endTime)
The end time (in UTC) that the workflow finished. Will follow the RFC 3339 format.
Example:
"2024-03-21T15:35:00Z"
-
endTime
WorkflowRunSummary._FinalStage endTime(java.time.OffsetDateTime endTime)
-
batchId
WorkflowRunSummary._FinalStage batchId(java.util.Optional<java.lang.String> batchId)
The batch ID of the WorkflowRun. If that WorkflowRun was created from a batch of files, all runs in that batch will have the same batch ID.
Example:
"batch_7Ws31-F5"
-
batchId
WorkflowRunSummary._FinalStage batchId(java.lang.String batchId)
-
rejectionNote
WorkflowRunSummary._FinalStage rejectionNote(java.util.Optional<java.lang.String> rejectionNote)
The note that was added when the workflow run was rejected.
Example:
"Invalid invoice format"
-
rejectionNote
WorkflowRunSummary._FinalStage rejectionNote(java.lang.String rejectionNote)
-
-