vx_evt_transcribed_message
Learn about messaging in Vivox Core.
Read time 1 minuteLast updated 20 hours ago
Module: Group Voice and Text Communications Presented when an incoming transcribed text has arrived from a participant in an open session.
#include <VxcEvents.h>Public Attributes
Name | |
|---|---|
| vx_evt_base_t | base The common properties for all events. |
| VX_HANDLE | sessiongroup_handle The handle used in vx_req_sessiongroup_addsession. |
| VX_HANDLE | session_handle The handle returned from successful session add request. |
| char * | participant_uri The URI of the speaker. |
| char * | text The transcribed text, UTF-8 encoded. |
| char * | language The language (default NULL, implies "en"). |
| int | is_current_user Indicates whether the message is from the current logged in user. |
| char * | participant_displayname The displayname, if the participant_uri had a displayname. |
Public Attributes Documentation
variable base
The common properties for all events.vx_evt_base_t base;
variable sessiongroup_handle
The handle used in vx_req_sessiongroup_addsession. See: vx_req_sessiongroup_addsessionVX_HANDLE sessiongroup_handle;
variable session_handle
The handle returned from successful session add request. See: vx_req_sessiongroup_add_sessionVX_HANDLE session_handle;
variable participant_uri
The URI of the speaker.char * participant_uri;
variable text
The transcribed text, UTF-8 encoded.char * text;
variable language
The language (default NULL, implies "en").char * language;
variable is_current_user
Indicates whether the message is from the current logged in user.int is_current_user;
variable participant_displayname
The displayname, if the participant_uri had a displayname.char * participant_displayname;