TransactionDataObserver
interface TransactionDataObserver
Content copied to clipboard
Observer to monitor Receipt Upload Transactions that occur inside of the Sensibill SDK
To monitor transactions, add an implementation of TransactionDataObserver to the Sensibill SDK
SensibillSDK.addTransactionDataObserver(object : TransactionDataObserver {
override fun notify(transaction: Transaction) {
// Observer upload transaction
}
})