UIAction
Represents an action that can be performed on a UI component.
Syntax
data-slots=heading, code
data-repeat=1
data-languages=Kotlin
Kotlin
sealed class UIAction
Click
Represents a click UIAction that can be performed on a UI component.
Public Properties
Property
Type
Description
idString
The unique identifier of the UI component.
actionUrlString?
An optional URL to be opened when the UI component is clicked.
Syntax
data-slots=heading, code
data-repeat=1
data-languages=Kotlin
Kotlin
data class Click(val id: String, val actionUrl: String?) : UIAction()