* @throws RemoteException
* @throws ServiceException
* @throws SOAPException
*/
public static final GetTransactionDetailsResponseType getTransactionDetails(String _txnId, APICredential _credentials) throws RemoteException {
GetTransactionDetailsRequestType request = new GetTransactionDetailsRequestType();
request.setVersion(CURRENT_VERSION);
request.setTransactionID(_txnId);
return getTransactionDetails(request, _credentials);
}