class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2IntentFollowupIntentInfo

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_v3beta1/classes.rb, line 9117
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 9122
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