Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Metrics of each processing step.
Instance Attribute Summary collapse
-
#latency ⇒ String
Processing latency of the step.
-
#name ⇒ String
Name of the request processing step.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics.
5220 5221 5222 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5220 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latency ⇒ String
Processing latency of the step.
Corresponds to the JSON property latency
5213 5214 5215 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5213 def latency @latency end |
#name ⇒ String
Name of the request processing step.
Corresponds to the JSON property name
5218 5219 5220 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5218 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5225 5226 5227 5228 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5225 def update!(**args) @latency = args[:latency] if args.key?(:latency) @name = args[:name] if args.key?(:name) end |