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. | [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] |