* @throws RemoteException
*/
public static final BillUserResponseType billUser(BillUserRequestType _request, APICredential _credentials) throws RemoteException {
long startTime = System.currentTimeMillis();
validateRequest(_request);
BillUserResponseType response = getAPIInterface(_credentials).billUser(new BillUserReq(_request));
processResponse(response);
long endTime = System.currentTimeMillis();
logMessage(startTime, endTime, response, "API.billUser");
return response;
}