Delete a Transaction in Amatino Swift - A double-entry accounting library for iOS & MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Amatino Swift: https://github.com/amatino-code/amatino-swift | |
// Double entry accounting API | |
try transaction.delete( { (error, transaction) in | |
// It's gone! The returned transaction is in an | |
// .active = false state and is no longer used. | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
transaction
instance is an example of aTransaction
retrieved or created using techniques visible in the Transaction.create() and Transaction.retrieve() gists.