Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainIssueModelResult
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainIssueModelResult
- 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::GoogleCloudContactcenterinsightsV1mainIssueAssignment>
All the matched issues.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainIssueModelResult
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainIssueModelResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainIssueModelResult
Returns a new instance of GoogleCloudContactcenterinsightsV1mainIssueModelResult.
21020 21021 21022 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21020 def initialize(**args) update!(**args) end |
Instance Attribute Details
#issue_model ⇒ String
Issue model that generates the result. Format: projects/project/locations/
location/issueModels/issue_model
Corresponds to the JSON property issueModel
21013 21014 21015 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21013 def issue_model @issue_model end |
#issues ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainIssueAssignment>
All the matched issues.
Corresponds to the JSON property issues
21018 21019 21020 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21018 def issues @issues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21025 21026 21027 21028 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21025 def update!(**args) @issue_model = args[:issue_model] if args.key?(:issue_model) @issues = args[:issues] if args.key?(:issues) end |