Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.09 KB

MultipartFormFieldRequest.md

File metadata and controls

15 lines (11 loc) · 1.09 KB

Merge.HRISClient.Model.MultipartFormFieldRequest

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.

Properties

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]

[Back to Model list] [Back to API list] [Back to README]