31 lines
698 B
Go
31 lines
698 B
Go
|
package app
|
||
|
|
||
|
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
|
||
|
}
|