@Target([AnnotationTarget.VALUE_PARAMETER]) class PartMap
Denotes name and value parts of a multi-part request.
Values of the map on which this annotation exists will be processed in one of two ways:
RequestBody the value will be used directly with its content type.
@Multipart
@POST("/upload")
Call<ResponseBody> upload(
@Part("file") RequestBody file,
@PartMap Map<String, RequestBody> params);
A null value for the map, as a key, or as a value is not allowed.
PartMap(encoding: String)
Denotes name and value parts of a multi-part request. |
val encoding: String
The |