Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ToolCall
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ToolCall
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#action ⇒ String
Corresponds to the JSON property
action. -
#answer_record ⇒ String
Corresponds to the JSON property
answerRecord. -
#ces_app ⇒ String
Corresponds to the JSON property
cesApp. -
#ces_tool ⇒ String
Corresponds to the JSON property
cesTool. -
#ces_toolset ⇒ String
Corresponds to the JSON property
cesToolset. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#input_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
inputParameters. -
#state ⇒ String
Corresponds to the JSON property
state. -
#tool ⇒ String
Corresponds to the JSON property
tool. -
#tool_display_details ⇒ String
Corresponds to the JSON property
toolDisplayDetails. -
#tool_display_name ⇒ String
Corresponds to the JSON property
toolDisplayName.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolCall
constructor
A new instance of GoogleCloudDialogflowV2ToolCall.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolCall
Returns a new instance of GoogleCloudDialogflowV2ToolCall.
16897 16898 16899 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16897 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Corresponds to the JSON property action
16845 16846 16847 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16845 def action @action end |
#answer_record ⇒ String
Corresponds to the JSON property answerRecord
16850 16851 16852 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16850 def answer_record @answer_record end |
#ces_app ⇒ String
Corresponds to the JSON property cesApp
16855 16856 16857 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16855 def ces_app @ces_app end |
#ces_tool ⇒ String
Corresponds to the JSON property cesTool
16860 16861 16862 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16860 def ces_tool @ces_tool end |
#ces_toolset ⇒ String
Corresponds to the JSON property cesToolset
16865 16866 16867 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16865 def ces_toolset @ces_toolset end |
#create_time ⇒ String
Corresponds to the JSON property createTime
16870 16871 16872 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16870 def create_time @create_time end |
#input_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property inputParameters
16875 16876 16877 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16875 def input_parameters @input_parameters end |
#state ⇒ String
Corresponds to the JSON property state
16880 16881 16882 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16880 def state @state end |
#tool ⇒ String
Corresponds to the JSON property tool
16885 16886 16887 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16885 def tool @tool end |
#tool_display_details ⇒ String
Corresponds to the JSON property toolDisplayDetails
16890 16891 16892 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16890 def tool_display_details @tool_display_details end |
#tool_display_name ⇒ String
Corresponds to the JSON property toolDisplayName
16895 16896 16897 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16895 def tool_display_name @tool_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 16902 def update!(**args) @action = args[:action] if args.key?(:action) @answer_record = args[:answer_record] if args.key?(:answer_record) @ces_app = args[:ces_app] if args.key?(:ces_app) @ces_tool = args[:ces_tool] if args.key?(:ces_tool) @ces_toolset = args[:ces_toolset] if args.key?(:ces_toolset) @create_time = args[:create_time] if args.key?(:create_time) @input_parameters = args[:input_parameters] if args.key?(:input_parameters) @state = args[:state] if args.key?(:state) @tool = args[:tool] if args.key?(:tool) @tool_display_details = args[:tool_display_details] if args.key?(:tool_display_details) @tool_display_name = args[:tool_display_name] if args.key?(:tool_display_name) end |