Interface WorkflowRunSummary._FinalStage

    • Method Detail

      • 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"

      • 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"

      • 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"

      • 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 initialRunAt time. Will follow the RFC 3339 format.

        Example: "2024-03-21T15:30:00Z"

      • 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"

      • 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"

      • 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"