Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSource
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSource
 
 
- 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
The conversation source, which is a combination of transcript and audio.
Instance Attribute Summary collapse
- 
  
    
      #dialogflow_source  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Dialogflow source of conversation data.
 - 
  
    
      #gcs_source  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GcsSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Cloud Storage source of conversation data.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1ConversationDataSource 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1ConversationDataSource.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ConversationDataSource
Returns a new instance of GoogleCloudContactcenterinsightsV1ConversationDataSource.
      1005 1006 1007  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1005 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#dialogflow_source ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowSource
A Dialogflow source of conversation data.
Corresponds to the JSON property dialogflowSource
      998 999 1000  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 998 def dialogflow_source @dialogflow_source end  | 
  
#gcs_source ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GcsSource
A Cloud Storage source of conversation data.
Corresponds to the JSON property gcsSource
      1003 1004 1005  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1003 def gcs_source @gcs_source end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1010 1011 1012 1013  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1010 def update!(**args) @dialogflow_source = args[:dialogflow_source] if args.key?(:dialogflow_source) @gcs_source = args[:gcs_source] if args.key?(:gcs_source) end  |