class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1IntentCoverage

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::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1IntentCoverageIntent>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 4892
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 4897
def update!(**args)
  @coverage_score = args[:coverage_score] if args.key?(:coverage_score)
  @intents = args[:intents] if args.key?(:intents)
end