class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentCoverage
Intent coverage represents the percentage of all possible intents in the agent that are triggered in any of a parent's test cases.
Attributes
coverage_score[RW]
The percent of intents in the agent that are covered. Corresponds to the JSON property `coverageScore` @return [Float]
intents[RW]
The list of Intents present in the agent Corresponds to the JSON property `intents` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentCoverageIntent>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 2351 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 2356 def update!(**args) @coverage_score = args[:coverage_score] if args.key?(:coverage_score) @intents = args[:intents] if args.key?(:intents) end