UserMessage

data class UserMessage(val value: List<UserMessageBlock>) : Message

A message from the user.

Constructors

Link copied to clipboard
constructor(value: List<UserMessageBlock>)

Properties

Link copied to clipboard

Inherited functions

Link copied to clipboard

Casts this Message as a AssistantMessage and retrieves its kotlin.collections.List value. Throws an exception if the Message is not a AssistantMessage.

Link copied to clipboard

Casts this Message as a AssistantMessage and retrieves its kotlin.collections.List value. Returns null if the Message is not a AssistantMessage.

Link copied to clipboard

Casts this Message as a UserMessage and retrieves its kotlin.collections.List value. Throws an exception if the Message is not a UserMessage.

Link copied to clipboard

Casts this Message as a UserMessage and retrieves its kotlin.collections.List value. Returns null if the Message is not a UserMessage.