Skip to content

Instantly share code, notes, and snippets.

@fasmide
Created November 16, 2011 22:30
Show Gist options
  • Select an option

  • Save fasmide/1371688 to your computer and use it in GitHub Desktop.

Select an option

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

fasmide commented Nov 17, 2011

Copy link
Copy Markdown
Author

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