The MultipartFormField Object ### Description The MultipartFormField
object is used to represent fields in an HTTP request using multipart/form-data
. ### Usage Example Create a MultipartFormField
to define a multipart form entry.
Name | Type | Description | Notes |
---|---|---|---|
Name | string | The name of the form field | |
Data | string | The data for the form field. | |
Encoding | EncodingEnum | The encoding of the value of `data`. Defaults to `RAW` if not defined. * `RAW` - RAW * `BASE64` - BASE64 * `GZIP_BASE64` - GZIP_BASE64 | [optional] |
FileName | string | The file name of the form field, if the field is for a file. | [optional] |
ContentType | string | The MIME type of the file, if the field is for a file. | [optional] |