Skip to content

Instantly share code, notes, and snippets.

@fasmide
Created November 16, 2011 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fasmide/1371688 to your computer and use it in GitHub Desktop.
Save fasmide/1371688 to your computer and use it in GitHub Desktop.
libDanskeBank usage
DanskeBank db = new DanskeBank();
Login l = db.login(LOGINID, LOGINCODE);
Accounts a = db.getAccounts();
//Gets first account
Account b = a.getAccounts().get(0);
//gets the newst 20 transactions
Transactions t = db.getTransactions(b.getAccountId());
ArrayList<Transaction> transactionList = t.getTransactions();
@fasmide
Copy link
Author

fasmide commented Nov 17, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment