Skip to content

Instantly share code, notes, and snippets.

@hwjeremy
Created August 5, 2018 04:20
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/6750f71934ada7c676ee6a9ae9cd7ac9 to your computer and use it in GitHub Desktop.
Save hwjeremy/6750f71934ada7c676ee6a9ae9cd7ac9 to your computer and use it in GitHub Desktop.
Update an Account 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 account.update(
name: "Newly updated account name",
parent: nil,
type: account.type, // using the existing value
counterParty: nil,
colour: nil,
globalUnit: USD,
callback: { (error, account) in
// The returned Account instance is updated
})
@hwjeremy
Copy link
Author

hwjeremy commented Aug 5, 2018

The usd parameter passed to .update() may be found in the Retrieve a GlobalUnit gist. The account instance itself is an example of a Account retrieved or created using techniques visible in the Account.create() and Account.retrieve() gists.

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