Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolFunctionTool

Inherits:
Object
  • Object
show all
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

Overview

A Function tool describes the functions to be invoked on the client side.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ToolFunctionTool

Returns a new instance of GoogleCloudDialogflowCxV3ToolFunctionTool.



9464
9465
9466
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9464

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#input_schemaHash<String,Object>

Optional. The JSON schema is encapsulated in a google.protobuf.Struct to describe the input of the function. This input is a JSON object that contains the function's parameters as properties of the object. Corresponds to the JSON property inputSchema

Returns:

  • (Hash<String,Object>)


9455
9456
9457
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9455

def input_schema
  @input_schema
end

#output_schemaHash<String,Object>

Optional. The JSON schema is encapsulated in a google.protobuf.Struct to describe the output of the function. This output is a JSON object that contains the function's parameters as properties of the object. Corresponds to the JSON property outputSchema

Returns:

  • (Hash<String,Object>)


9462
9463
9464
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9462

def output_schema
  @output_schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9469
9470
9471
9472
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9469

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