* @throws SOAPException
*/
public static final DoExpressCheckoutPaymentResponseType doExpressCheckoutPayment(DoExpressCheckoutPaymentRequestType _request, APICredential _credentials) throws RemoteException {
long startTime = System.currentTimeMillis();
validateRequest(_request);
DoExpressCheckoutPaymentResponseType response = getAPIAAInterface(_credentials).doExpressCheckoutPayment(new DoExpressCheckoutPaymentReq(_request));
processResponse(response);
long endTime = System.currentTimeMillis();
logMessage(startTime, endTime, response, "API.doExpressCheckoutPayment");
return response;
}