Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Coverage result message for one transition route group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage

Returns a new instance of GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverage.



8882
8883
8884
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8882

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#coverage_scoreFloat

The percent of transition routes in the transition route group that are covered. Corresponds to the JSON property coverageScore

Returns:

  • (Float)


8869
8870
8871
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8869

def coverage_score
  @coverage_score
end

#route_groupGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup

An TransitionRouteGroup represents a group of TransitionRoutes to be used by a Page. Corresponds to the JSON property routeGroup



8875
8876
8877
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8875

def route_group
  @route_group
end

#transitionsArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition>

The list of transition routes and coverage in the transition route group. Corresponds to the JSON property transitions



8880
8881
8882
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8880

def transitions
  @transitions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8887
8888
8889
8890
8891
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8887

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