Skip to content

Commit

Permalink
update transcriptionChunkReceived payload format
Browse files Browse the repository at this point in the history
  • Loading branch information
quitrk committed Dec 12, 2023
1 parent dda1970 commit a7920b0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/dev-guide/iframe-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,11 +760,18 @@ The listener receives an object with the following structure:

```javascript
{
// Transcription language
language: string,

// ID for this chunk.
messageID: string,

// Name of the participant.
participantName: string,
// participant info
participant: {
avatarUrl: string,
id: string
name: string,
},

// If the transcription is final, the text will be here.
final: string,
Expand Down

0 comments on commit a7920b0

Please sign in to comment.