Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnalysisResultCallAnalysisMetadata

Inherits:
Object
  • Object
show all
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 created during analysis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1AnalysisResultCallAnalysisMetadata

Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1AnalysisResultCallAnalysisMetadata.



5828
5829
5830
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5828

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#annotationsArray<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1CallAnnotation>

A list of call annotations that apply to this call. Corresponds to the JSON property annotations



5791
5792
5793
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5791

def annotations
  @annotations
end

#entitiesHash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Entity>

All the entities in the call. Corresponds to the JSON property entities



5796
5797
5798
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5796

def entities
  @entities
end

#intentsHash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Intent>

All the matched intents in the call. Corresponds to the JSON property intents



5801
5802
5803
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5801

def intents
  @intents
end

#issue_model_resultGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelResult

Issue Modeling result on a conversation. Corresponds to the JSON property issueModelResult



5806
5807
5808
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5806

def issue_model_result
  @issue_model_result
end

#phrase_matchersHash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1PhraseMatchData>

All the matched phrase matchers in the call. Corresponds to the JSON property phraseMatchers



5811
5812
5813
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5811

def phrase_matchers
  @phrase_matchers
end

#qa_scorecard_resultsArray<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1QaScorecardResult>

Results of scoring QaScorecards. Corresponds to the JSON property qaScorecardResults



5816
5817
5818
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5816

def qa_scorecard_results
  @qa_scorecard_results
end

#sentimentsArray<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment>

Overall conversation-level sentiment for each channel of the call. Corresponds to the JSON property sentiments



5821
5822
5823
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5821

def sentiments
  @sentiments
end

#silenceGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence

Conversation-level silence data. Corresponds to the JSON property silence



5826
5827
5828
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5826

def silence
  @silence
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 5833

def update!(**args)
  @annotations = args[:annotations] if args.key?(:annotations)
  @entities = args[:entities] if args.key?(:entities)
  @intents = args[:intents] if args.key?(:intents)
  @issue_model_result = args[:issue_model_result] if args.key?(:issue_model_result)
  @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers)
  @qa_scorecard_results = args[:qa_scorecard_results] if args.key?(:qa_scorecard_results)
  @sentiments = args[:sentiments] if args.key?(:sentiments)
  @silence = args[:silence] if args.key?(:silence)
end