Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainIssueModelLabelStatsIssueStats

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

Aggregated statistics about an issue.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainIssueModelLabelStatsIssueStats

Returns a new instance of GoogleCloudContactcenterinsightsV1mainIssueModelLabelStatsIssueStats.



23197
23198
23199
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 23197

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

Instance Attribute Details

#display_nameString

Display name of the issue. Corresponds to the JSON property displayName

Returns:

  • (String)


23184
23185
23186
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 23184

def display_name
  @display_name
end

#issueString

Issue resource. Format: projects/project/locations/location/issueModels/ issue_model/issues/issue Corresponds to the JSON property issue

Returns:

  • (String)


23190
23191
23192
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 23190

def issue
  @issue
end

#labeled_conversations_countFixnum

Number of conversations attached to the issue at this point in time. Corresponds to the JSON property labeledConversationsCount

Returns:

  • (Fixnum)


23195
23196
23197
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 23195

def labeled_conversations_count
  @labeled_conversations_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23202
23203
23204
23205
23206
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 23202

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @issue = args[:issue] if args.key?(:issue)
  @labeled_conversations_count = args[:labeled_conversations_count] if args.key?(:labeled_conversations_count)
end