Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelResult

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

Issue Modeling result on a conversation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelResult

Returns a new instance of GoogleCloudContactcenterinsightsV1IssueModelResult.



1774
1775
1776
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1774

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

Instance Attribute Details

#issue_modelString

Issue model that generates the result. Corresponds to the JSON property issueModel

Returns:

  • (String)


1767
1768
1769
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1767

def issue_model
  @issue_model
end

#issuesArray<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment>

All the matched issues. Corresponds to the JSON property issues



1772
1773
1774
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1772

def issues
  @issues
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1779
1780
1781
1782
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1779

def update!(**args)
  @issue_model = args[:issue_model] if args.key?(:issue_model)
  @issues = args[:issues] if args.key?(:issues)
end