Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage
- 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
Coverage result message for one transition route group.
Instance Attribute Summary collapse
-
#coverage_score ⇒ Float
The percent of transition routes in the transition route group that are covered.
-
#route_group ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup
A TransitionRouteGroup represents a group of
TransitionRoutes
to be used by a Page. -
#transitions ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition>
The list of transition routes and coverage in the transition route group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage
constructor
A new instance of GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage
Returns a new instance of GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage.
7942 7943 7944 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#coverage_score ⇒ Float
The percent of transition routes in the transition route group that are
covered.
Corresponds to the JSON property coverageScore
7929 7930 7931 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7929 def coverage_score @coverage_score end |
#route_group ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup
A TransitionRouteGroup represents a group of TransitionRoutes
to be used by
a Page.
Corresponds to the JSON property routeGroup
7935 7936 7937 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7935 def route_group @route_group end |
#transitions ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition>
The list of transition routes and coverage in the transition route group.
Corresponds to the JSON property transitions
7940 7941 7942 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7940 def transitions @transitions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7947 7948 7949 7950 7951 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7947 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @route_group = args[:route_group] if args.key?(:route_group) @transitions = args[:transitions] if args.key?(:transitions) end |