Class ResponseCustomToolCallOutput.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ResponseCustomToolCallOutput.BuilderA builder for ResponseCustomToolCallOutput. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        callIdfinal ResponseCustomToolCallOutput.Builder callId(String callId) The call ID, used to map this custom tool call output to a custom tool call. 
 - 
                                        callIdfinal ResponseCustomToolCallOutput.Builder callId(JsonField<String> callId) Sets Builder.callId to an arbitrary JSON value. You should usually call Builder.callId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        outputfinal ResponseCustomToolCallOutput.Builder output(ResponseCustomToolCallOutput.Output output) The output from the custom tool call generated by your code. Can be a string or an list of output content. 
 - 
                                        outputfinal ResponseCustomToolCallOutput.Builder output(JsonField<ResponseCustomToolCallOutput.Output> output) Sets Builder.output to an arbitrary JSON value. You should usually call Builder.output with a well-typed Output value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        outputfinal ResponseCustomToolCallOutput.Builder output(String string) Alias for calling output with Output.ofString(string).
 - 
                                        outputOfContentListfinal ResponseCustomToolCallOutput.Builder outputOfContentList(List<ResponseCustomToolCallOutput.Output.FunctionAndCustomToolCallOutput> contentList) Alias for calling output with Output.ofContentList(contentList).
 - 
                                        typefinal ResponseCustomToolCallOutput.Builder type(JsonValue type) Sets the field to an arbitrary JSON value. It is usually unnecessary to call this method because the field defaults to the following: JsonValue.from("custom_tool_call_output")This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        idfinal ResponseCustomToolCallOutput.Builder id(String id) The unique ID of the custom tool call output in the OpenAI platform. 
 - 
                                        idfinal ResponseCustomToolCallOutput.Builder id(JsonField<String> id) Sets Builder.id to an arbitrary JSON value. You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal ResponseCustomToolCallOutput.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ResponseCustomToolCallOutput.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ResponseCustomToolCallOutput.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ResponseCustomToolCallOutput.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ResponseCustomToolCallOutput.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ResponseCustomToolCallOutput build() Returns an immutable instance of ResponseCustomToolCallOutput. Further updates to this Builder will not mutate the returned instance. The following fields are required: .callId() .output()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-