Class ChatCompletionMessageToolCall
- 
                    
                    
- All Implemented Interfaces:
 
public final class ChatCompletionMessageToolCall 
- 
                
                    
                    
- 
                                
                            
                                
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classChatCompletionMessageToolCall.BuilderA builder for ChatCompletionMessageToolCall.
public final classChatCompletionMessageToolCall.FunctionThe function that the model called.
 
- 
                                
                            
                                
Method Summary
Modifier and Type Method Description final Stringid()The ID of the tool call. final ChatCompletionMessageToolCall.Functionfunction()The function that the model called. final JsonValue_type()The type of the tool. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<ChatCompletionMessageToolCall.Function>_function()Returns the raw JSON value of function. final Map<String, JsonValue>_additionalProperties()final ChatCompletionMessageToolCall.BuildertoBuilder()final ChatCompletionMessageToolCallvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ChatCompletionMessageToolCall.Builderbuilder()Returns a mutable builder for constructing an instance of ChatCompletionMessageToolCall. - 
                    
                    
                    
- 
                                
                            
                                
Method Detail
- 
                                        
function
final ChatCompletionMessageToolCall.Function function()
The function that the model called.
 
- 
                                        
_type
final JsonValue _type()
The type of the tool. Currently, only
functionis supported.Expected to always return the following:
JsonValue.from("function")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
 
- 
                                        
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
 
- 
                                        
_function
final JsonField<ChatCompletionMessageToolCall.Function> _function()
Returns the raw JSON value of function.
Unlike function, this method doesn't throw if the JSON field has an unexpected type.
 
- 
                                        
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
 
- 
                                        
toBuilder
final ChatCompletionMessageToolCall.Builder toBuilder()
 
- 
                                        
validate
final ChatCompletionMessageToolCall validate()
 
- 
                                        
builder
final static ChatCompletionMessageToolCall.Builder builder()
Returns a mutable builder for constructing an instance of ChatCompletionMessageToolCall.
The following fields are required:
.id() .function() 
 - 
                                        
 
 - 
                                
                            
                                
 
 - 
                    
                    
                    
 
 -