Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig
 
 
- 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
- 
  
    
      #speech_recognizer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully-qualified Speech Recognizer resource name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1SpeechConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1SpeechConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1SpeechConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1SpeechConfig.
      3664 3665 3666  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3664 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#speech_recognizer ⇒ String
The fully-qualified Speech Recognizer resource name. Format: projects/
project_id/locations/location/recognizer/recognizer`
Corresponds to the JSON propertyspeechRecognizer`
      3662 3663 3664  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3662 def speech_recognizer @speech_recognizer end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3669 3670 3671  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3669 def update!(**args) @speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer) end  |