Account represents a financial account linked to a balance, identity, and ledger.
| 19 | |
| 20 | // Account represents a financial account linked to a balance, identity, and ledger. |
| 21 | type Account struct { |
| 22 | AccountID string `json:"account_id"` |
| 23 | Name string `json:"name" form:"name"` |
| 24 | Number string `json:"number" form:"number"` |
| 25 | BankName string `json:"bank_name"` |
| 26 | Currency string `json:"currency"` |
| 27 | BalanceID string `json:"balance_id" ` |
| 28 | IdentityID string `json:"identity_id" form:"identity_id"` |
| 29 | LedgerID string `json:"ledger_id"` |
| 30 | Ledger *Ledger `json:"ledger"` |
| 31 | Balance *Balance `json:"balance"` |
| 32 | Identity *Identity `json:"identity"` |
| 33 | CreatedAt time.Time `json:"created_at"` |
| 34 | MetaData map[string]interface{} `json:"meta_data"` |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected