FlowResult

data class FlowResult(val missingStages: List<Stage>, val completedStages: List<Stage>)

Information about the missing and completed Stage.

Constructors

Link copied to clipboard
fun FlowResult(missingStages: List<Stage>, completedStages: List<Stage>)

Properties

Link copied to clipboard
val completedStages: List<Stage>

List of completed stages.

Link copied to clipboard
val missingStages: List<Stage>

List of missing stages.