* @throws RemoteException
* @throws ServiceException
* @throws SOAPException
*/
public static final GetExpressCheckoutDetailsResponseType getExpressCheckoutDetails(String _token, APICredential _credentials) throws RemoteException {
GetExpressCheckoutDetailsRequestType request = new GetExpressCheckoutDetailsRequestType();
request.setVersion(CURRENT_VERSION);
request.setToken(_token);
return getExpressCheckoutDetails(request, _credentials);
}