lib/types/eft.go

31 lines
700 B
Go
Raw Normal View History

2021-01-10 18:40:46 +00:00
package types
import "database/sql"
// Eft is a first class object type
type Eft struct {
ID string
AccountID string
Amount float64
AttemptNumber float64
BackendID string
BillingRunID string
CashReceiptID string
CreatedByID string
CreatedDate sql.NullTime
Executed sql.NullTime
Fee float64
Gateway string
GatewayKey string
GatewayMessage string
JournalDate sql.NullTime
LastModifiedByID string
LastModifiedDate sql.NullTime
PaymentMethodID string
Ref string
Status string
TenantID string
TransactionID string
Items []*EftItem
}