class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentFollowupIntentInfo
Represents a single followup intent in the chain.
Attributes
followup_intent_name[RW]
The unique identifier of the followup intent. Format: `projects//agent/intents/ `. Corresponds to the JSON property `followupIntentName` @return [String]
parent_followup_intent_name[RW]
The unique identifier of the followup intent's parent. Format: `projects// agent/intents/`. Corresponds to the JSON property `parentFollowupIntentName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 12270 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 12275 def update!(**args) @followup_intent_name = args[:followup_intent_name] if args.key?(:followup_intent_name) @parent_followup_intent_name = args[:parent_followup_intent_name] if args.key?(:parent_followup_intent_name) end