Skip to content

Instantly share code, notes, and snippets.

@hwjeremy
Last active August 5, 2018 04:42
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 hwjeremy/b50c0bcfff6b8c75ba042271b6e008fa to your computer and use it in GitHub Desktop.
Save hwjeremy/b50c0bcfff6b8c75ba042271b6e008fa to your computer and use it in GitHub Desktop.
Retrieve a Tree in Amatino Swift - A double-entry accounting library for iOS & MacOS
// Amatino Swift: https://github.com/amatino-code/amatino-swift
// Double entry accounting API
try Tree.retrieve(
session: session,
entity: starkIndustries,
globalUnit: usd,
callback: { (error: Error?, tree: Tree?) in {
// tree.accounts contains a hierachary of all
// Accounts in this entity, as either TreeNode
// or PlaceholderNode instances
})
@hwjeremy
Copy link
Author

hwjeremy commented Aug 5, 2018

The parameters supplied to Tree.retrieve() come from the following examples:

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