SwitchCaseResponse

data class SwitchCaseResponse(val activities: List<Any>? = null, val value: String? = null)

Switch cases with have a value and corresponding activities.

Constructors

Link copied to clipboard
constructor(activities: List<Any>? = null, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val activities: List<Any>? = null

List of activities to execute for satisfied case condition.

Link copied to clipboard
val value: String? = null

Expected value that satisfies the expression result of the 'on' property.