The MultipartSegment
UDR is used when sending requests containing multiple types of content, or when the content has been split up in multiple parts.
The following fields are included in the MultipartSegment
UDR:
Field | Description |
---|---|
content (bytearray) | The body of the message. |
contentType (string) | The type of the content, e g "multipart/form-data ", "multipart/mixed" , etc. |
filename (string) | The actual file name, e g "img.jpg". |
name (string) | An informal name of the file, e g "myFile". |
Add Comment