MCPcopy Create free account
hub / github.com/devaccuracy/ledgerforge / Account

Struct Account

model/account.go:21–35  ·  view source on GitHub ↗

Account represents a financial account linked to a balance, identity, and ledger.

Source from the content-addressed store, hash-verified

19
20// Account represents a financial account linked to a balance, identity, and ledger.
21type 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected