Class ResponseInputFile.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ResponseInputFile.BuilderA builder for ResponseInputFile. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        typefinal ResponseInputFile.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 ResponseInputFile.Builder fileData(String fileData) The content of the file to be sent to the model. 
 - 
                                        fileDatafinal ResponseInputFile.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 ResponseInputFile.Builder fileId(String fileId) The ID of the file to be sent to the model. 
 - 
                                        fileIdfinal ResponseInputFile.Builder fileId(Optional<String> fileId) Alias for calling Builder.fileId with fileId.orElse(null).
 - 
                                        fileIdfinal ResponseInputFile.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 ResponseInputFile.Builder fileUrl(String fileUrl) The URL of the file to be sent to the model. 
 - 
                                        fileUrlfinal ResponseInputFile.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 ResponseInputFile.Builder filename(String filename) The name of the file to be sent to the model. 
 - 
                                        filenamefinal ResponseInputFile.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 ResponseInputFile.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ResponseInputFile.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ResponseInputFile.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ResponseInputFile.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ResponseInputFile.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ResponseInputFile build() Returns an immutable instance of ResponseInputFile. Further updates to this Builder will not mutate the returned instance. 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-