juliorenner / financial-control

Financial control for money which belongs to more than one person.
0 stars 0 forks source link

Transaction API #15

Open juliorenner opened 5 years ago

juliorenner commented 5 years ago

Define the transactions API which shall keep track of all incomes and outcomes. It also should be able to slipt and income in several outcomes. These several outcomes are transactions as well. The transactions have to contain the information of what generated the transaction (the money origin), its destination, a small description, and date.

juliorenner commented 5 years ago

Initial definition:

{
  id : "UUID"
  resultingTransactions: [ {}, {} ]
  origin: "<tag ID>"
  destination: "<tag ID>"
  description: "20 characteres"
  date: "timestamp"
}