go run ./ cli rec to pull all from teller
Some checks failed
cicd / ci (push) Failing after 18s

This commit is contained in:
Bel LaPointe
2025-05-23 21:01:09 -06:00
parent e0fa44eef7
commit 7a946b7604
3 changed files with 63 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ type Account struct {
}
type Transaction struct {
Amount string `json:"amount"`
Amount float64 `json:"amount,string"`
Details struct {
ProcessingStatus string `json:"processing_status"`
CounterParty struct {
@@ -25,6 +25,6 @@ type Transaction struct {
} `json:"details"`
Description string `json:"description"`
Date string `json:"date"`
Type string `json:"fee"`
Type string `json:"type"`
Status string `json:"status"`
}