Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentInput

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

Represents the intent to trigger programmatically rather than as a result of natural language processing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3IntentInput

Returns a new instance of GoogleCloudDialogflowCxV3IntentInput.



2125
2126
2127
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2125

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#intentString

Required. The unique identifier of the intent. Format: projects//locations// agents//intents/. Corresponds to the JSON property intent

Returns:

  • (String)


2123
2124
2125
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2123

def intent
  @intent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2130
2131
2132
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2130

def update!(**args)
  @intent = args[:intent] if args.key?(:intent)
end