Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata
 
 
- 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
Call-specific metadata.
Instance Attribute Summary collapse
- 
  
    
      #agent_channel  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The audio channel that contains the agent.
 - 
  
    
      #customer_channel  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The audio channel that contains the customer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata.
      4719 4720 4721  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4719 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#agent_channel ⇒ Fixnum
The audio channel that contains the agent.
Corresponds to the JSON property agentChannel
      4712 4713 4714  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4712 def agent_channel @agent_channel end  | 
  
#customer_channel ⇒ Fixnum
The audio channel that contains the customer.
Corresponds to the JSON property customerChannel
      4717 4718 4719  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4717 def customer_channel @customer_channel end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4724 4725 4726 4727  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4724 def update!(**args) @agent_channel = args[:agent_channel] if args.key?(:agent_channel) @customer_channel = args[:customer_channel] if args.key?(:customer_channel) end  |