class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats

Aggregated statistics about an issue.

Attributes

issue[RW]

Issue resource. Format: projects/`project`/locations/`location`/issueModels/` issue_model`/issues/`issue` Corresponds to the JSON property `issue` @return [String]

labeled_conversations_count[RW]

Number of conversations attached to the issue at this point in time. Corresponds to the JSON property `labeledConversationsCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1675
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 1680
def update!(**args)
  @issue = args[:issue] if args.key?(:issue)
  @labeled_conversations_count = args[:labeled_conversations_count] if args.key?(:labeled_conversations_count)
end