Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3IntentInput

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/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.



1912
1913
1914
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1912

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)


1910
1911
1912
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1910

def intent
  @intent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1917
1918
1919
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 1917

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