Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Represents a Dialogflow assist answer.
Instance Attribute Summary collapse
-
#answer_record ⇒ String
The name of answer record, in the format of "projects//locations// answerRecords/" Corresponds to the JSON property
answerRecord
. -
#intent_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion
Represents an intent suggestion.
-
#query_result ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult
Represents the result of conversational query or event processing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
constructor
A new instance of GoogleCloudDialogflowV2beta1DialogflowAssistAnswer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1DialogflowAssistAnswer
Returns a new instance of GoogleCloudDialogflowV2beta1DialogflowAssistAnswer.
17946 17947 17948 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17946 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_record ⇒ String
The name of answer record, in the format of "projects//locations//
answerRecords/"
Corresponds to the JSON property answerRecord
17934 17935 17936 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17934 def answer_record @answer_record end |
#intent_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1IntentSuggestion
Represents an intent suggestion.
Corresponds to the JSON property intentSuggestion
17939 17940 17941 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17939 def intent_suggestion @intent_suggestion end |
#query_result ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1QueryResult
Represents the result of conversational query or event processing.
Corresponds to the JSON property queryResult
17944 17945 17946 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17944 def query_result @query_result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17951 17952 17953 17954 17955 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17951 def update!(**args) @answer_record = args[:answer_record] if args.key?(:answer_record) @intent_suggestion = args[:intent_suggestion] if args.key?(:intent_suggestion) @query_result = args[:query_result] if args.key?(:query_result) end |