Action

data class Action(val label: String, val cta: String, val danger: Boolean = false, val detail: String? = null) : BackupLaneState

Constructors

Link copied to clipboard
constructor(label: String, cta: String, danger: Boolean = false, detail: String? = null)

Properties

Link copied to clipboard
val cta: String
Link copied to clipboard
val danger: Boolean = false
Link copied to clipboard
val detail: String? = null

Optional actionable detail shown under the lane (e.g. a setup hint).

Link copied to clipboard