WaitStep

@Serializable
data class WaitStep(val wait: String? = null, val allowDependencyFailure: Boolean? = null, val continueOnFailure: Boolean? = null, val dependsOn: DependsOn? = null, val id: String? = null, val identifier: String? = null, val waitStepIf: String? = null, val key: String? = null, val type: WaitType? = null, val waiter: String? = null) : Keyable(source)

Waits for previous steps to pass before continuing

Constructors

Link copied to clipboard
constructor(wait: String? = null, allowDependencyFailure: Boolean? = null, continueOnFailure: Boolean? = null, dependsOn: DependsOn? = null, id: String? = null, identifier: String? = null, waitStepIf: String? = null, key: String? = null, type: WaitType? = null, waiter: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "allow_dependency_failure")
val allowDependencyFailure: Boolean? = null
Link copied to clipboard
@SerialName(value = "continue_on_failure")
val continueOnFailure: Boolean? = null

Continue to the next steps, even if the previous group of steps fail

Link copied to clipboard
@SerialName(value = "depends_on")
val dependsOn: DependsOn? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val identifier: String? = null
Link copied to clipboard
open override val key: String? = null
Link copied to clipboard
val type: WaitType? = null
Link copied to clipboard
val wait: String? = null

Waits for previous steps to pass before continuing

Link copied to clipboard
val waiter: String? = null
Link copied to clipboard
@SerialName(value = "if")
val waitStepIf: String? = null