lib/types/transaction.go

18 lines
370 B
Go
Raw Permalink Normal View History

2021-01-10 18:40:46 +00:00
package types
import "database/sql"
// Transaction is a first class object type
type Transaction struct {
ID string
AccountID string
CreatedByID string
CreatedDate sql.NullTime
LastModifiedByID string
LastModifiedDate sql.NullTime
TaxTypeID string
TaxTransactionID string
TenantID string
Valid bool
}