| 16 | package model |
| 17 | |
| 18 | type CreateBalance struct { |
| 19 | LedgerId string `json:"ledger_id"` |
| 20 | IdentityId string `json:"identity_id"` |
| 21 | Currency string `json:"currency"` |
| 22 | Precision float64 `json:"precision"` |
| 23 | MetaData map[string]interface{} `json:"meta_data"` |
| 24 | TrackFundLineage bool `json:"track_fund_lineage"` |
| 25 | AllocationStrategy string `json:"allocation_strategy"` |
| 26 | } |
| 27 | |
| 28 | type CreateBalanceMonitor struct { |
| 29 | BalanceId string `json:"balance_id"` |
nothing calls this directly
no outgoing calls
no test coverage detected