UserInput

data class UserInput(val content: String, val timestamp: Instant = Instant.now()) : SystemInput, HasContent

Special class that represents a single user input Starting point for many flows.

Constructors

Link copied to clipboard
constructor(content: String)
constructor(content: String, timestamp: Instant = Instant.now())

Properties

Link copied to clipboard
open override val content: String

Content associated with this object.

Link copied to clipboard
open val timestamp: Instant