| 18 | import "time" |
| 19 | |
| 20 | type Match struct { |
| 21 | ExternalTransactionID string |
| 22 | InternalTransactionID string |
| 23 | ReconciliationID string |
| 24 | Amount float64 |
| 25 | Date time.Time |
| 26 | } |
| 27 | |
| 28 | type ExternalTransaction struct { |
| 29 | ID string `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected