Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 1012 Bytes

MultipartFormFieldRequest.md

File metadata and controls

16 lines (11 loc) · 1012 Bytes

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 str The name of the form field
data str The data for the form field.
encoding object, none_type The encoding of the value of `data`. Defaults to `RAW` if not defined. [optional]
file_name str, none_type The file name of the form field, if the field is for a file. [optional]
content_type str, none_type 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]