class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverage
Transition coverage represents the percentage of all possible page transitions (page-level transition routes and event handlers, excluding transition route groups) present within any of a parent's test cases.
Attributes
coverage_score[RW]
The percent of transitions in the agent that are covered. Corresponds to the JSON property `coverageScore` @return [Float]
transitions[RW]
The list of Transitions present in the agent. Corresponds to the JSON property `transitions` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 7445 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 7450 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @transitions = args[:transitions] if args.key?(:transitions) end