Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainSpeechConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainSpeechConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
Speech-to-Text configuration. Speech-to-Text settings are applied to
conversations ingested from the UploadConversation and IngestConversations
endpoints, including conversation coming from CCAI Platform. They are not
applied to conversations ingested from the CreateConversation endpoint.
Instance Attribute Summary collapse
-
#disable_word_time_offsets ⇒ Boolean
(also: #disable_word_time_offsets?)
Whether to disable word time offsets.
-
#speech_recognizer ⇒ String
The fully-qualified Speech Recognizer resource name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainSpeechConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainSpeechConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainSpeechConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1mainSpeechConfig.
25215 25216 25217 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 25215 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_word_time_offsets ⇒ Boolean Also known as: disable_word_time_offsets?
Whether to disable word time offsets. If true, the enable_word_time_offsets
field in the recognition config will be set to false.
Corresponds to the JSON property disableWordTimeOffsets
25206 25207 25208 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 25206 def disable_word_time_offsets @disable_word_time_offsets end |
#speech_recognizer ⇒ String
The fully-qualified Speech Recognizer resource name. Format: projects/
project_id/locations/location/recognizer/recognizer`
Corresponds to the JSON propertyspeechRecognizer`
25213 25214 25215 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 25213 def speech_recognizer @speech_recognizer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25220 25221 25222 25223 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 25220 def update!(**args) @disable_word_time_offsets = args[:disable_word_time_offsets] if args.key?(:disable_word_time_offsets) @speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer) end |