class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverage

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::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup]

transitions[RW]

The list of transition routes and coverage in the transition route group. Corresponds to the JSON property `transitions` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 5178
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_v3/classes.rb, line 5183
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