Class FileCreateParams
-
- All Implemented Interfaces:
-
com.openai.core.Params
public final class FileCreateParams implements Params
Create a Container File
You can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
FileCreateParams.Builder
A builder for FileCreateParams.
public final class
FileCreateParams.Body
-
Method Summary
Modifier and Type Method Description final Optional<String>
containerId()
final Optional<InputStream>
file()
The File object (not file name) to be uploaded. final Optional<String>
fileId()
Name of the file to create. final MultipartField<InputStream>
_file()
Returns the raw multipart value of file. final MultipartField<String>
_fileId()
Returns the raw multipart value of fileId. final Headers
_additionalHeaders()
final QueryParams
_additionalQueryParams()
final FileCreateParams.Builder
toBuilder()
final Map<String, MultipartField<?>>
_body()
final String
_pathParam(Integer index)
Headers
_headers()
The full set of headers in the parameters, including both fixed and additional headers. QueryParams
_queryParams()
The full set of query params in the parameters, including both fixed and additional query params. Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static FileCreateParams
none()
final static FileCreateParams.Builder
builder()
Returns a mutable builder for constructing an instance of FileCreateParams. -
-
Method Detail
-
containerId
final Optional<String> containerId()
-
file
final Optional<InputStream> file()
The File object (not file name) to be uploaded.
-
_file
final MultipartField<InputStream> _file()
Returns the raw multipart value of file.
Unlike file, this method doesn't throw if the multipart field has an unexpected type.
-
_fileId
final MultipartField<String> _fileId()
Returns the raw multipart value of fileId.
Unlike fileId, this method doesn't throw if the multipart field has an unexpected type.
-
_additionalHeaders
final Headers _additionalHeaders()
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
-
toBuilder
final FileCreateParams.Builder toBuilder()
-
_body
final Map<String, MultipartField<?>> _body()
-
_pathParam
final String _pathParam(Integer index)
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
none
final static FileCreateParams none()
-
builder
final static FileCreateParams.Builder builder()
Returns a mutable builder for constructing an instance of FileCreateParams.
-
-
-
-