Skip to content

Instantly share code, notes, and snippets.

@hwjeremy
Created August 5, 2018 04:41
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/cd474060e41dc9063a9534bc6b56d2b5 to your computer and use it in GitHub Desktop.
Save hwjeremy/cd474060e41dc9063a9534bc6b56d2b5 to your computer and use it in GitHub Desktop.
Retrieve a Performance 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 Performance.retrieve(
session: session,
entity: starkIndustries,
startTime: Date(timeIntervalSinceNow: (-3600*24*10)),
endTime: Date(),
globalUnit: usd,
callback: { (error, performance) in
// performance.incomeAccounts & performance.expenseAccounts
// contain the performance of the Entity over the specified
// timeframe
})
@hwjeremy
Copy link
Author

hwjeremy commented Aug 5, 2018

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

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