Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats
- 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
A breakdown of metrics grouped by intent.
Instance Attribute Summary collapse
-
#conversation_count ⇒ Fixnum
Output only.
-
#intent_display_name ⇒ String
Output only.
-
#intent_id ⇒ String
Output only.
-
#loss_patterns ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1LossPattern>
Output only.
-
#metrics ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1MetricValue>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats
constructor
A new instance of GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats
Returns a new instance of GoogleCloudContactcenterinsightsV1DiagnosticReportIntentStats.
4129 4130 4131 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4129 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_count ⇒ Fixnum
Output only. The number of conversations associated with this intent.
Corresponds to the JSON property conversationCount
4106 4107 4108 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4106 def conversation_count @conversation_count end |
#intent_display_name ⇒ String
Output only. The display name of the intent.
Corresponds to the JSON property intentDisplayName
4111 4112 4113 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4111 def intent_display_name @intent_display_name end |
#intent_id ⇒ String
Output only. The unique identifier for the intent (from Discovery Engine).
Corresponds to the JSON property intentId
4116 4117 4118 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4116 def intent_id @intent_id end |
#loss_patterns ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1LossPattern>
Output only. A list of loss patterns identified for this intent.
Corresponds to the JSON property lossPatterns
4121 4122 4123 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4121 def loss_patterns @loss_patterns end |
#metrics ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1MetricValue>
Output only. Deprecated: The type of the metric. Metrics for Outcome Based
Insights derived from QueryMetrics.
Corresponds to the JSON property metrics
4127 4128 4129 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4127 def metrics @metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4134 4135 4136 4137 4138 4139 4140 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4134 def update!(**args) @conversation_count = args[:conversation_count] if args.key?(:conversation_count) @intent_display_name = args[:intent_display_name] if args.key?(:intent_display_name) @intent_id = args[:intent_id] if args.key?(:intent_id) @loss_patterns = args[:loss_patterns] if args.key?(:loss_patterns) @metrics = args[:metrics] if args.key?(:metrics) end |