class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentCoverageIntent
The agent's intent.
Attributes
covered[RW]
Whether or not the intent is covered by at least one of the agent's test cases. Corresponds to the JSON property `covered` @return [Boolean]
covered?[RW]
Whether or not the intent is covered by at least one of the agent's test cases. Corresponds to the JSON property `covered` @return [Boolean]
intent[RW]
The intent full resource name Corresponds to the JSON property `intent` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 2688 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 2693 def update!(**args) @covered = args[:covered] if args.key?(:covered) @intent = args[:intent] if args.key?(:intent) end