TimePicker

abstract class TimePicker : Message

A TimePicker message to display.

Each TimePicker message has a title and a list of time slots to display to the user. The user can select one of the time slots, and the associated id should be sent as postback value together with the text representing the selected time slot as a reply message (on behalf of the user).

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

Attachments provided with the message. This field can be empty. It contains attachments that the user or agent sent alongside with the message.

Link copied to clipboard
abstract val author: MessageAuthor?

Author associated with this message.

Link copied to clipboard
abstract val createdAt: Instant

The timestamp of when the message was created on the server. Similarly to id this field shouldn't change for the lifetime of the message.

Link copied to clipboard

The direction in which the message is sent.

Link copied to clipboard
abstract val fallbackText: String?

Optional fallback text which can be used if UI integration doesn't support concrete subtype of Message.

Link copied to clipboard
abstract val id: UUID

The id that was assigned to this message. If another message has matching id, it's the same message with possibly different content.

Link copied to clipboard
open val isAiGenerated: Boolean = false

Whether this message was generated by an AI agent.

Link copied to clipboard

The otherwise uncategorizable properties for this message. It can contain anything from message status to custom properties.

Link copied to clipboard
abstract val popupTitle: String

title to be displayed after clicking on the picker list.

Link copied to clipboard
abstract val threadId: UUID

The thread id that this message belongs to. Messages should never be mismatched between threads as this can lead to inconsistencies and undefined behavior.

Link copied to clipboard
abstract val timeSlots: Iterable<TimeSlot>

list of time slots to display along with title.

Link copied to clipboard
abstract val title: String

title message to display in conversation.