Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationEvent
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Represents a notification sent to Pub/Sub subscribers for conversation lifecycle events.
Instance Attribute Summary collapse
-
#conversation ⇒ String
The unique identifier of the conversation this notification refers to.
-
#error_status ⇒ Google::Apis::DialogflowV2::GoogleRpcStatus
The
Statustype defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#new_message_payload ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Message
Represents a message posted into a conversation.
-
#new_recognition_result_payload ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2StreamingRecognitionResult
Contains a speech recognition result corresponding to a portion of the audio that is currently being processed or an indication that this is the end of the single requested utterance.
-
#type ⇒ String
The type of the event that this notification refers to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationEvent
constructor
A new instance of GoogleCloudDialogflowV2ConversationEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ConversationEvent
Returns a new instance of GoogleCloudDialogflowV2ConversationEvent.
9814 9815 9816 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation ⇒ String
The unique identifier of the conversation this notification refers to. Format:
projects//conversations/.
Corresponds to the JSON property conversation
9765 9766 9767 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9765 def conversation @conversation end |
#error_status ⇒ Google::Apis::DialogflowV2::GoogleRpcStatus
The Status type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property errorStatus
9775 9776 9777 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9775 def error_status @error_status end |
#new_message_payload ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Message
Represents a message posted into a conversation.
Corresponds to the JSON property newMessagePayload
9780 9781 9782 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9780 def @new_message_payload end |
#new_recognition_result_payload ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2StreamingRecognitionResult
Contains a speech recognition result corresponding to a portion of the audio
that is currently being processed or an indication that this is the end of the
single requested utterance. While end-user audio is being processed,
Dialogflow sends a series of results. Each result may contain a transcript
value. A transcript represents a portion of the utterance. While the
recognizer is processing audio, transcript values may be interim values or
finalized values. Once a transcript is finalized, the is_final value is set
to true and processing continues for the next transcript. If
StreamingDetectIntentRequest.query_input.audio_config.single_utterance was
true, and the recognizer has completed processing audio, the message_type
value is set to END_OF_SINGLE_UTTERANCE and the following (last) result
contains the last finalized transcript. The complete end-user utterance is
determined by concatenating the finalized transcript values received for the
series of results. In the following example, single utterance is enabled. In
the case where single utterance is not enabled, result 7 would not occur.
Num | transcript | message_type | is_final --- | ----------------------- | ----
------------------- | -------- 1 | "tube" | TRANSCRIPT | false 2 | "to be a" |
TRANSCRIPT | false 3 | "to be" | TRANSCRIPT | false 4 | "to be or not to be" |
TRANSCRIPT | true 5 | "that's" | TRANSCRIPT | false 6 | "that is | TRANSCRIPT |
false 7 | unset | END_OF_SINGLE_UTTERANCE | unset 8 | " that is the question"
| TRANSCRIPT | trueConcatenating the finalized transcripts withis_final
set to true, the complete utterance becomes "to be or not to be that is the
question".
Corresponds to the JSON propertynewRecognitionResultPayload`
9807 9808 9809 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9807 def new_recognition_result_payload @new_recognition_result_payload end |
#type ⇒ String
The type of the event that this notification refers to.
Corresponds to the JSON property type
9812 9813 9814 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9812 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9819 9820 9821 9822 9823 9824 9825 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9819 def update!(**args) @conversation = args[:conversation] if args.key?(:conversation) @error_status = args[:error_status] if args.key?(:error_status) @new_message_payload = args[:new_message_payload] if args.key?(:new_message_payload) @new_recognition_result_payload = args[:new_recognition_result_payload] if args.key?(:new_recognition_result_payload) @type = args[:type] if args.key?(:type) end |