Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata

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) ⇒ GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata

Returns a new instance of GoogleCloudContactcenterinsightsV1mainAnalysisResultCallAnalysisMetadata.



18587
18588
18589
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18587

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

Instance Attribute Details

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

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



18550
18551
18552
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18550

def annotations
  @annotations
end

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

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



18555
18556
18557
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18555

def entities
  @entities
end

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

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



18560
18561
18562
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18560

def intents
  @intents
end

#issue_model_resultGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainIssueModelResult

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



18565
18566
18567
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18565

def issue_model_result
  @issue_model_result
end

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

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



18570
18571
18572
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18570

def phrase_matchers
  @phrase_matchers
end

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

Results of scoring QaScorecards. Corresponds to the JSON property qaScorecardResults



18575
18576
18577
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18575

def qa_scorecard_results
  @qa_scorecard_results
end

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

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



18580
18581
18582
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18580

def sentiments
  @sentiments
end

#silenceGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainConversationLevelSilence

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



18585
18586
18587
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18585

def silence
  @silence
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18592
18593
18594
18595
18596
18597
18598
18599
18600
18601
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18592

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