Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig
 
 
- 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
Configuration that applies to all conversations.
Instance Attribute Summary collapse
- 
  
    
      #agent_channel  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #agent_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #customer_channel  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig.
      2392 2393 2394  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2392 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#agent_channel ⇒ Fixnum
Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
that this must be set for conversations to be properly displayed and analyzed.
Corresponds to the JSON property agentChannel
      2377 2378 2379  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2377 def agent_channel @agent_channel end  | 
  
#agent_id ⇒ String
Optional. An opaque, user-specified string representing a human agent who
handled all conversations in the import. Note that this will be overridden if
per-conversation metadata is provided through the metadata_bucket_uri.
Corresponds to the JSON property agentId
      2384 2385 2386  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2384 def agent_id @agent_id end  | 
  
#customer_channel ⇒ Fixnum
Optional. Indicates which of the channels, 1 or 2, contains the agent. Note
that this must be set for conversations to be properly displayed and analyzed.
Corresponds to the JSON property customerChannel
      2390 2391 2392  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2390 def customer_channel @customer_channel end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2397 2398 2399 2400 2401  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2397 def update!(**args) @agent_channel = args[:agent_channel] if args.key?(:agent_channel) @agent_id = args[:agent_id] if args.key?(:agent_id) @customer_channel = args[:customer_channel] if args.key?(:customer_channel) end  |