RealtimeMessageResult

class oci.ai_speech.models.RealtimeMessageResult(**kwargs)

Bases: oci.ai_speech.models.realtime_message.RealtimeMessage

The websocket result message received from service.

Attributes

EVENT_ACKAUDIO str(object=’’) -> str
EVENT_CONNECT str(object=’’) -> str
EVENT_ERROR str(object=’’) -> str
EVENT_RESULT str(object=’’) -> str
event [Required] Gets the event of this RealtimeMessage.
session_id Gets the session_id of this RealtimeMessage.
transcriptions [Required] Gets the transcriptions of this RealtimeMessageResult.

Methods

__init__(**kwargs) Initializes a new RealtimeMessageResult object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
EVENT_ACKAUDIO = 'ACKAUDIO'
EVENT_CONNECT = 'CONNECT'
EVENT_ERROR = 'ERROR'
EVENT_RESULT = 'RESULT'
__init__(**kwargs)

Initializes a new RealtimeMessageResult object with values from keyword arguments. The default value of the event attribute of this class is RESULT and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • event (str) – The value to assign to the event property of this RealtimeMessageResult. Allowed values for this property are: “RESULT”, “ACKAUDIO”, “ERROR”, “CONNECT”
  • session_id (str) – The value to assign to the session_id property of this RealtimeMessageResult.
  • transcriptions (list[oci.ai_speech.models.RealtimeMessageResultTranscription]) – The value to assign to the transcriptions property of this RealtimeMessageResult.
event

[Required] Gets the event of this RealtimeMessage. Incoming Types of message event sent from Service -> Client - RESULT - result - ACKAUDIO - ackAudio - ERROR - error - CONNECT - connect Outgoing Types of message event sent from Client -> Service - SEND_FINAL_RESULT - sendFinalResult

Allowed values for this property are: “RESULT”, “ACKAUDIO”, “ERROR”, “CONNECT”

Returns:The event of this RealtimeMessage.
Return type:str
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

session_id

Gets the session_id of this RealtimeMessage. Session ID for the connected session.

Returns:The session_id of this RealtimeMessage.
Return type:str
transcriptions

[Required] Gets the transcriptions of this RealtimeMessageResult. List of transcription objects.

Returns:The transcriptions of this RealtimeMessageResult.
Return type:list[oci.ai_speech.models.RealtimeMessageResultTranscription]