2018-10-04 19:46:04 +00:00
|
|
|
package vat_toll
|
|
|
|
|
|
|
|
type VatTollModel struct {
|
|
|
|
Ilk string
|
|
|
|
Urn string
|
|
|
|
Take string
|
|
|
|
TransactionIndex uint `db:"tx_idx"`
|
2018-10-23 21:33:04 +00:00
|
|
|
LogIndex uint `db:"log_idx"`
|
2018-10-04 19:46:04 +00:00
|
|
|
Raw []byte `db:"raw_log"`
|
|
|
|
}
|