Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1IntentInput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1IntentInput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents the intent to trigger programmatically rather than as a result of natural language processing.
Instance Attribute Summary collapse
-
#intent ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1IntentInput
constructor
A new instance of GoogleCloudDialogflowCxV3beta1IntentInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1IntentInput
Returns a new instance of GoogleCloudDialogflowCxV3beta1IntentInput.
4448 4449 4450 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intent ⇒ String
Required. The unique identifier of the intent. Format: projects//locations//
agents//intents/
.
Corresponds to the JSON property intent
4446 4447 4448 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4446 def intent @intent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4453 4454 4455 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4453 def update!(**args) @intent = args[:intent] if args.key?(:intent) end |