class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats

Aggregated statistics about an issue model.

Attributes

analyzed_conversations_count[RW]

Number of conversations the issue model has analyzed at this point in time. Corresponds to the JSON property `analyzedConversationsCount` @return [Fixnum]

issue_stats[RW]

Statistics on each issue. Key is the issue's resource name. Corresponds to the JSON property `issueStats` @return [Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats>]

unclassified_conversations_count[RW]

Number of analyzed conversations for which no issue was applicable at this point in time. Corresponds to the JSON property `unclassifiedConversationsCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1648
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1653
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