Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData
 
 
- 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
Dialogflow interaction data.
Instance Attribute Summary collapse
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The confidence of the match ranging from 0.0 (completely uncertain) to 1.0 ( completely certain).
 - 
  
    
      #dialogflow_intent_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Dialogflow intent resource path.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData.
      5358 5359 5360  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5358 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#confidence ⇒ Float
The confidence of the match ranging from 0.0 (completely uncertain) to 1.0 (
completely certain).
Corresponds to the JSON property confidence
      5350 5351 5352  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5350 def confidence @confidence end  | 
  
#dialogflow_intent_id ⇒ String
The Dialogflow intent resource path. Format: projects/project/agent/agent/
intents/intent
Corresponds to the JSON property dialogflowIntentId
      5356 5357 5358  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5356 def dialogflow_intent_id @dialogflow_intent_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5363 5364 5365 5366  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5363 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @dialogflow_intent_id = args[:dialogflow_intent_id] if args.key?(:dialogflow_intent_id) end  |