class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage
Coverage result message for one transition route group.
Attributes
coverage_score[RW]
The percent of transition routes in the transition route group that are covered. Corresponds to the JSON property `coverageScore` @return [Float]
route_group[RW]
An TransitionRouteGroup represents a group of `TransitionRoutes` to be used by a Page. Corresponds to the JSON property `routeGroup` @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup]
transitions[RW]
The list of transition routes and coverage in the transition route group. Corresponds to the JSON property `transitions` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 7719 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 7724 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