Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowSource
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowSource
 
 
- 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
A Dialogflow source of conversation data.
Instance Attribute Summary collapse
- 
  
    
      #audio_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Cloud Storage URI that points to a file that contains the conversation audio.
 - 
  
    
      #dialogflow_conversation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1DialogflowSource 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1DialogflowSource.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1DialogflowSource
Returns a new instance of GoogleCloudContactcenterinsightsV1DialogflowSource.
      1662 1663 1664  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1662 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#audio_uri ⇒ String
Cloud Storage URI that points to a file that contains the conversation audio.
Corresponds to the JSON property audioUri
      1653 1654 1655  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1653 def audio_uri @audio_uri end  | 
  
#dialogflow_conversation ⇒ String
Output only. The name of the Dialogflow conversation that this conversation
resource is derived from. Format: projects/project/locations/location/
conversations/conversation
Corresponds to the JSON property dialogflowConversation
      1660 1661 1662  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1660 def dialogflow_conversation @dialogflow_conversation end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1667 1668 1669 1670  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1667 def update!(**args) @audio_uri = args[:audio_uri] if args.key?(:audio_uri) @dialogflow_conversation = args[:dialogflow_conversation] if args.key?(:dialogflow_conversation) end  |