ReceivedAgentTranscriptionMessage

data class ReceivedAgentTranscriptionMessage(val id: String, val message: String, val timestamp: Long, val fromParticipant: Participant?, val attributes: Map<String, String> = emptyMap()) : ReceivedMessage

A transcription of an agent's audio.

Constructors

Link copied to clipboard
constructor(id: String, message: String, timestamp: Long, fromParticipant: Participant?, attributes: Map<String, String> = emptyMap())

Properties

Link copied to clipboard
open override val attributes: Map<String, String>

A map of user defined attributes that are associated with the message.

Link copied to clipboard
open override val fromParticipant: Participant?

The participant this message belongs to.

Link copied to clipboard
open override val id: String

The id for the message.

Link copied to clipboard
open override val message: String

The message.

Link copied to clipboard
open override val timestamp: Long

The timestamp associated for this message, measured in milliseconds since Unix epoch.