Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Transition route group coverage represents the percentage of all possible transition routes present within any of a parent's test cases. The results are grouped by the transition route group.
Instance Attribute Summary collapse
-
#coverage_score ⇒ Float
The percent of transition routes in all the transition route groups that are covered.
-
#coverages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage>
Transition route group coverages.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
constructor
A new instance of GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
Returns a new instance of GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage.
5814 5815 5816 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#coverage_score ⇒ Float
The percent of transition routes in all the transition route groups that are
covered.
Corresponds to the JSON property coverageScore
5807 5808 5809 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5807 def coverage_score @coverage_score end |
#coverages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage>
Transition route group coverages.
Corresponds to the JSON property coverages
5812 5813 5814 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5812 def coverages @coverages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5819 5820 5821 5822 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5819 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @coverages = args[:coverages] if args.key?(:coverages) end |