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.
5602 5603 5604 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5602 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
5595 5596 5597 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5595 def coverage_score @coverage_score end |
#coverages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage>
Transition route group coverages.
Corresponds to the JSON property coverages
5600 5601 5602 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5600 def coverages @coverages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5607 5608 5609 5610 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5607 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @coverages = args[:coverages] if args.key?(:coverages) end |