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