Reference documentation and code samples for the Google Cloud Dialogflow V2 Client class MessageType.
Type of the response message.
Protobuf type google.cloud.dialogflow.v2.StreamingRecognitionResult.MessageType
Namespace
Google \ Cloud \ Dialogflow \ V2 \ StreamingRecognitionResultMethods
static::name
| Parameter | |
|---|---|
| Name | Description |
value |
mixed
|
static::value
| Parameter | |
|---|---|
| Name | Description |
name |
mixed
|
Constants
MESSAGE_TYPE_UNSPECIFIED
Value: 0Not specified. Should never be used.
Generated from protobuf enum MESSAGE_TYPE_UNSPECIFIED = 0;
TRANSCRIPT
Value: 1Message contains a (possibly partial) transcript.
Generated from protobuf enum TRANSCRIPT = 1;
DTMF_DIGITS
Value: 3Message contains DTMF digits.
Generated from protobuf enum DTMF_DIGITS = 3;
END_OF_SINGLE_UTTERANCE
Value: 2This event indicates that the server has detected the end of the user's speech utterance and expects no additional inputs.
Therefore, the server will not process additional audio (although it may
subsequently return additional results). The client should stop sending
additional audio data, half-close the gRPC connection, and wait for any
additional results until the server closes the gRPC connection. This
message is only sent if single_utterance was set to true, and is not
used otherwise.
Generated from protobuf enum END_OF_SINGLE_UTTERANCE = 2;
PARTIAL_DTMF_DIGITS
Value: 4Message contains DTMF digits. Before a message with DTMF_DIGITS is sent, a message with PARTIAL_DTMF_DIGITS may be sent with DTMF digits collected up to the time of sending, which represents an intermediate result.
Generated from protobuf enum PARTIAL_DTMF_DIGITS = 4;
SPEECH_ACTIVITY_BEGIN
Value: 5This event indicates that the server has detected the beginning of human voice activity in the stream. This event can be returned multiple times if speech starts and stops repeatedly throughout the stream.
Generated from protobuf enum SPEECH_ACTIVITY_BEGIN = 5;
SPEECH_ACTIVITY_END
Value: 6This event indicates that the server has detected the end of human voice activity in the stream. This event can be returned multiple times if speech starts and stops repeatedly throughout the stream.
Generated from protobuf enum SPEECH_ACTIVITY_END = 6;