final case class SinglePart[F[_]](request: HttpRequest[F], xtra: HttpHeaders = HttpHeaders.empty) extends Part with Product with Serializable
Single request. Either standalone or in a changeset. Content-Type and Content-Transfer-Encoding is added to each part prior to the request being written. Headers in request can be overriden and added to using xtra.
- xtra
Extra headers after the boundary but not in the actual request.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SinglePart
- Serializable
- Serializable
- Product
- Equals
- Part
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
SinglePart(request: HttpRequest[F], xtra: HttpHeaders = HttpHeaders.empty)
- xtra
Extra headers after the boundary but not in the actual request.
Value Members
- val request: HttpRequest[F]
-
val
xtra: HttpHeaders
- Definition Classes
- SinglePart → Part