Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats
- 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::GoogleCloudContactcenterinsightsV1mainLossPattern>
Output only.
-
#metrics ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainMetricValue>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats
Returns a new instance of GoogleCloudContactcenterinsightsV1mainDiagnosticReportIntentStats.
20177 20178 20179 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20177 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
20154 20155 20156 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20154 def conversation_count @conversation_count end |
#intent_display_name ⇒ String
Output only. The display name of the intent.
Corresponds to the JSON property intentDisplayName
20159 20160 20161 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20159 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
20164 20165 20166 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20164 def intent_id @intent_id end |
#loss_patterns ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainLossPattern>
Output only. A list of loss patterns identified for this intent.
Corresponds to the JSON property lossPatterns
20169 20170 20171 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20169 def loss_patterns @loss_patterns end |
#metrics ⇒ Hash<String,Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainMetricValue>
Output only. Deprecated: The type of the metric. Metrics for Outcome Based
Insights derived from QueryMetrics.
Corresponds to the JSON property metrics
20175 20176 20177 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20175 def metrics @metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20182 20183 20184 20185 20186 20187 20188 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 20182 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 |