| 26 | } |
| 27 | |
| 28 | type ExternalTransaction struct { |
| 29 | ID string `json:"id"` |
| 30 | Amount float64 `json:"amount"` |
| 31 | Reference string `json:"reference"` |
| 32 | Currency string `json:"currency"` |
| 33 | Description string `json:"description"` |
| 34 | Date time.Time `json:"date"` |
| 35 | Source string `json:"source"` |
| 36 | } |
| 37 | |
| 38 | type Reconciliation struct { |
| 39 | ID int64 `json:"-"` |
nothing calls this directly
no outgoing calls
no test coverage detected