class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverage
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::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransition>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 4904 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 4909 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @transitions = args[:transitions] if args.key?(:transitions) end