| 18 | import "time" |
| 19 | |
| 20 | type Ledger struct { |
| 21 | ID int64 `json:"-"` |
| 22 | LedgerID string `json:"ledger_id"` |
| 23 | Name string `json:"name"` |
| 24 | CreatedAt time.Time `json:"created_at"` |
| 25 | MetaData map[string]interface{} `json:"meta_data"` |
| 26 | } |
| 27 | |
| 28 | type LedgerFilter struct { |
| 29 | ID int64 `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected