Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestionResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestionResult
- 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
One response of different type of suggestion response which is used in the response of Participants.AnalyzeContent and Participants.AnalyzeContent, as well as HumanAgentAssistantEvent.
Instance Attribute Summary collapse
-
#error ⇒ Google::Apis::DialogflowV2beta1::GoogleRpcStatus
The
Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. -
#suggest_articles_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestArticlesResponse
The response message for Participants.SuggestArticles.
-
#suggest_faq_answers_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse
The request message for Participants.SuggestFaqAnswers.
-
#suggest_knowledge_assist_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
The response message for Participants.SuggestKnowledgeAssist.
-
#suggest_smart_replies_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestSmartRepliesResponse
The response message for Participants.SuggestSmartReplies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2SuggestionResult
constructor
A new instance of GoogleCloudDialogflowV2SuggestionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2SuggestionResult
Returns a new instance of GoogleCloudDialogflowV2SuggestionResult.
10915 10916 10917 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10915 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error ⇒ Google::Apis::DialogflowV2beta1::GoogleRpcStatus
The Status
type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status
message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property error
10893 10894 10895 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10893 def error @error end |
#suggest_articles_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestArticlesResponse
The response message for Participants.SuggestArticles.
Corresponds to the JSON property suggestArticlesResponse
10898 10899 10900 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10898 def suggest_articles_response @suggest_articles_response end |
#suggest_faq_answers_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse
The request message for Participants.SuggestFaqAnswers.
Corresponds to the JSON property suggestFaqAnswersResponse
10903 10904 10905 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10903 def suggest_faq_answers_response @suggest_faq_answers_response end |
#suggest_knowledge_assist_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
The response message for Participants.SuggestKnowledgeAssist.
Corresponds to the JSON property suggestKnowledgeAssistResponse
10908 10909 10910 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10908 def suggest_knowledge_assist_response @suggest_knowledge_assist_response end |
#suggest_smart_replies_response ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SuggestSmartRepliesResponse
The response message for Participants.SuggestSmartReplies.
Corresponds to the JSON property suggestSmartRepliesResponse
10913 10914 10915 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10913 def suggest_smart_replies_response @suggest_smart_replies_response end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10920 10921 10922 10923 10924 10925 10926 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10920 def update!(**args) @error = args[:error] if args.key?(:error) @suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response) @suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response) @suggest_knowledge_assist_response = args[:suggest_knowledge_assist_response] if args.key?(:suggest_knowledge_assist_response) @suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response) end |