Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats
- 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
Aggregated statistics about an issue model.
Instance Attribute Summary collapse
-
#analyzed_conversations_count ⇒ Fixnum
Number of conversations the issue model has analyzed at this point in time.
-
#issue_stats ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats>
Statistics on each issue.
-
#unclassified_conversations_count ⇒ Fixnum
Number of analyzed conversations for which no issue was applicable at this point in time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelLabelStats
constructor
A new instance of GoogleCloudContactcenterinsightsV1IssueModelLabelStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelLabelStats
Returns a new instance of GoogleCloudContactcenterinsightsV1IssueModelLabelStats.
4382 4383 4384 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4382 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analyzed_conversations_count ⇒ Fixnum
Number of conversations the issue model has analyzed at this point in time.
Corresponds to the JSON property analyzedConversationsCount
4369 4370 4371 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4369 def analyzed_conversations_count @analyzed_conversations_count end |
#issue_stats ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats>
Statistics on each issue. Key is the issue's resource name.
Corresponds to the JSON property issueStats
4374 4375 4376 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4374 def issue_stats @issue_stats end |
#unclassified_conversations_count ⇒ Fixnum
Number of analyzed conversations for which no issue was applicable at this
point in time.
Corresponds to the JSON property unclassifiedConversationsCount
4380 4381 4382 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4380 def unclassified_conversations_count @unclassified_conversations_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4387 4388 4389 4390 4391 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4387 def update!(**args) @analyzed_conversations_count = args[:analyzed_conversations_count] if args.key?(:analyzed_conversations_count) @issue_stats = args[:issue_stats] if args.key?(:issue_stats) @unclassified_conversations_count = args[:unclassified_conversations_count] if args.key?(:unclassified_conversations_count) end |