Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion
- 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
Suggestion generated using a Generator.
Instance Attribute Summary collapse
-
#agent_coaching_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2AgentCoachingSuggestion
Suggestion for coaching agents.
-
#free_form_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion
Suggestion generated using free form generator.
-
#summary_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion
Suggested summary of the conversation.
-
#tool_call_info ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorSuggestion
constructor
A new instance of GoogleCloudDialogflowV2GeneratorSuggestion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2GeneratorSuggestion
Returns a new instance of GoogleCloudDialogflowV2GeneratorSuggestion.
17700 17701 17702 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17700 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_coaching_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2AgentCoachingSuggestion
Suggestion for coaching agents.
Corresponds to the JSON property agentCoachingSuggestion
17683 17684 17685 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17683 def agent_coaching_suggestion @agent_coaching_suggestion end |
#free_form_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion
Suggestion generated using free form generator.
Corresponds to the JSON property freeFormSuggestion
17688 17689 17690 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17688 def free_form_suggestion @free_form_suggestion end |
#summary_suggestion ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion
Suggested summary of the conversation.
Corresponds to the JSON property summarySuggestion
17693 17694 17695 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17693 def summary_suggestion @summary_suggestion end |
#tool_call_info ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestionToolCallInfo>
Optional. List of request and response for tool calls executed.
Corresponds to the JSON property toolCallInfo
17698 17699 17700 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17698 def tool_call_info @tool_call_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17705 17706 17707 17708 17709 17710 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 17705 def update!(**args) @agent_coaching_suggestion = args[:agent_coaching_suggestion] if args.key?(:agent_coaching_suggestion) @free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion) @summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion) @tool_call_info = args[:tool_call_info] if args.key?(:tool_call_info) end |