* @throws RemoteException
*/
public static final MassPayResponseType massPay(MassPayRequestType _request, APICredential _credentials) throws RemoteException {
long startTime = System.currentTimeMillis();
validateRequest(_request);
MassPayReq req = new MassPayReq(_request);
MassPayResponseType response = getAPIInterface(_credentials).massPay(req);
processResponse(response);
long endTime = System.currentTimeMillis();
logMessage(startTime, endTime, response, "API.massPay");
return response;