Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelResult
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelResult
- 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
-
#issue_model ⇒ String
Issue model that generates the result.
-
#issues ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment>
All the matched issues.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelResult
constructor
A new instance of GoogleCloudContactcenterinsightsV1IssueModelResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IssueModelResult
Returns a new instance of GoogleCloudContactcenterinsightsV1IssueModelResult.
1715 1716 1717 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1715 def initialize(**args) update!(**args) end |
Instance Attribute Details
#issue_model ⇒ String
Issue model that generates the result.
Corresponds to the JSON property issueModel
1708 1709 1710 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1708 def issue_model @issue_model end |
#issues ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment>
All the matched issues.
Corresponds to the JSON property issues
1713 1714 1715 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1713 def issues @issues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1720 1721 1722 1723 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1720 def update!(**args) @issue_model = args[:issue_model] if args.key?(:issue_model) @issues = args[:issues] if args.key?(:issues) end |