* @param content Request body content as a byte array.
* @param contentType Content-Type eg application/pdf.
* @return The new request body instance.
*/
public static ByteArrayRequestBody body(byte[] content, String contentType) {
return new ByteArrayRequestBody(content, contentType);
}