Class ResponseInputFileContent.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ResponseInputFileContent.BuilderA builder for ResponseInputFileContent. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        typefinal ResponseInputFileContent.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("input_file")This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        fileDatafinal ResponseInputFileContent.Builder fileData(String fileData) The base64-encoded data of the file to be sent to the model. 
 - 
                                        fileDatafinal ResponseInputFileContent.Builder fileData(Optional<String> fileData) Alias for calling Builder.fileData with fileData.orElse(null).
 - 
                                        fileDatafinal ResponseInputFileContent.Builder fileData(JsonField<String> fileData) Sets Builder.fileData to an arbitrary JSON value. You should usually call Builder.fileData with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        fileIdfinal ResponseInputFileContent.Builder fileId(String fileId) The ID of the file to be sent to the model. 
 - 
                                        fileIdfinal ResponseInputFileContent.Builder fileId(Optional<String> fileId) Alias for calling Builder.fileId with fileId.orElse(null).
 - 
                                        fileIdfinal ResponseInputFileContent.Builder fileId(JsonField<String> fileId) Sets Builder.fileId to an arbitrary JSON value. You should usually call Builder.fileId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        fileUrlfinal ResponseInputFileContent.Builder fileUrl(String fileUrl) The URL of the file to be sent to the model. 
 - 
                                        fileUrlfinal ResponseInputFileContent.Builder fileUrl(Optional<String> fileUrl) Alias for calling Builder.fileUrl with fileUrl.orElse(null).
 - 
                                        fileUrlfinal ResponseInputFileContent.Builder fileUrl(JsonField<String> fileUrl) Sets Builder.fileUrl to an arbitrary JSON value. You should usually call Builder.fileUrl with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        filenamefinal ResponseInputFileContent.Builder filename(String filename) The name of the file to be sent to the model. 
 - 
                                        filenamefinal ResponseInputFileContent.Builder filename(Optional<String> filename) Alias for calling Builder.filename with filename.orElse(null).
 - 
                                        filenamefinal ResponseInputFileContent.Builder filename(JsonField<String> filename) Sets Builder.filename to an arbitrary JSON value. You should usually call Builder.filename with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal ResponseInputFileContent.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ResponseInputFileContent.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ResponseInputFileContent.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ResponseInputFileContent.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ResponseInputFileContent.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ResponseInputFileContent build() Returns an immutable instance of ResponseInputFileContent. Further updates to this Builder will not mutate the returned instance. 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-