Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2StreamingRecognitionResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2StreamingRecognitionResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Corresponds to the JSON property
confidence. -
#is_final ⇒ Boolean
(also: #is_final?)
Corresponds to the JSON property
isFinal. -
#language_code ⇒ String
Corresponds to the JSON property
languageCode. -
#message_type ⇒ String
Corresponds to the JSON property
messageType. -
#speech_end_offset ⇒ String
Corresponds to the JSON property
speechEndOffset. -
#speech_word_info ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SpeechWordInfo>
Corresponds to the JSON property
speechWordInfo. -
#transcript ⇒ String
Corresponds to the JSON property
transcript.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2StreamingRecognitionResult
constructor
A new instance of GoogleCloudDialogflowV2StreamingRecognitionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2StreamingRecognitionResult
Returns a new instance of GoogleCloudDialogflowV2StreamingRecognitionResult.
10243 10244 10245 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
Corresponds to the JSON property confidence
10210 10211 10212 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10210 def confidence @confidence end |
#is_final ⇒ Boolean Also known as: is_final?
Corresponds to the JSON property isFinal
10215 10216 10217 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10215 def is_final @is_final end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
10221 10222 10223 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10221 def language_code @language_code end |
#message_type ⇒ String
Corresponds to the JSON property messageType
10226 10227 10228 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10226 def @message_type end |
#speech_end_offset ⇒ String
Corresponds to the JSON property speechEndOffset
10231 10232 10233 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10231 def speech_end_offset @speech_end_offset end |
#speech_word_info ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SpeechWordInfo>
Corresponds to the JSON property speechWordInfo
10236 10237 10238 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10236 def speech_word_info @speech_word_info end |
#transcript ⇒ String
Corresponds to the JSON property transcript
10241 10242 10243 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10241 def transcript @transcript end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10248 10249 10250 10251 10252 10253 10254 10255 10256 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10248 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @is_final = args[:is_final] if args.key?(:is_final) @language_code = args[:language_code] if args.key?(:language_code) @message_type = args[:message_type] if args.key?(:message_type) @speech_end_offset = args[:speech_end_offset] if args.key?(:speech_end_offset) @speech_word_info = args[:speech_word_info] if args.key?(:speech_word_info) @transcript = args[:transcript] if args.key?(:transcript) end |