Package com.google.genai.types
Class LiveServerToolCall.Builder
-
- All Implemented Interfaces:
public abstract class LiveServerToolCall.BuilderBuilder for LiveServerToolCall.
-
-
Constructor Summary
Constructors Constructor Description LiveServerToolCall.Builder()
-
Method Summary
Modifier and Type Method Description abstract LiveServerToolCall.BuilderfunctionCalls(List<FunctionCall> functionCalls)Setter for functionCalls. LiveServerToolCall.BuilderfunctionCalls(Array<FunctionCall> functionCalls)Setter for functionCalls. LiveServerToolCall.BuilderfunctionCalls(Array<FunctionCall.Builder> functionCallsBuilders)Setter for functionCalls builder. LiveServerToolCall.BuilderclearFunctionCalls()Clears the value of functionCalls field. abstract LiveServerToolCallbuild()-
-
Method Detail
-
functionCalls
abstract LiveServerToolCall.Builder functionCalls(List<FunctionCall> functionCalls)
Setter for functionCalls.
functionCalls: The function call to be executed.
-
functionCalls
@CanIgnoreReturnValue() LiveServerToolCall.Builder functionCalls(Array<FunctionCall> functionCalls)
Setter for functionCalls.
functionCalls: The function call to be executed.
-
functionCalls
@CanIgnoreReturnValue() LiveServerToolCall.Builder functionCalls(Array<FunctionCall.Builder> functionCallsBuilders)
Setter for functionCalls builder.
functionCalls: The function call to be executed.
-
clearFunctionCalls
@CanIgnoreReturnValue() LiveServerToolCall.Builder clearFunctionCalls()
Clears the value of functionCalls field.
-
build
abstract LiveServerToolCall build()
-
-
-
-