Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
- 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
Instance Attribute Summary collapse
-
#metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric>
Corresponds to the JSON property
metrics. -
#session_count ⇒ Fixnum
Corresponds to the JSON property
sessionCount. -
#version ⇒ String
Corresponds to the JSON property
version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultVersionMetrics.
6591 6592 6593 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6591 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultMetric>
Corresponds to the JSON property metrics
6579 6580 6581 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6579 def metrics @metrics end |
#session_count ⇒ Fixnum
Corresponds to the JSON property sessionCount
6584 6585 6586 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6584 def session_count @session_count end |
#version ⇒ String
Corresponds to the JSON property version
6589 6590 6591 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6589 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6596 6597 6598 6599 6600 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6596 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @session_count = args[:session_count] if args.key?(:session_count) @version = args[:version] if args.key?(:version) end |