-
Notifications
You must be signed in to change notification settings - Fork 0
/
entities.go
52 lines (45 loc) · 1.39 KB
/
entities.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
import "time"
type Auth struct {
Success bool `json:"success"`
Message string `json:"message"`
Token string `json:"token"`
ExpiresAt int64 `json:"expiresAt"`
}
type User struct {
Email string `json:"email"`
Pwd string `json:"pwd"`
Name string `json:"name"`
}
type Bank struct {
OwningUserId string `json:"owningUserId"`
BankId string `json:"bankId"`
BankName string `json:"bankName"`
AccountNumber string `json:"accountNumber"`
}
type BankAccount struct {
BankId string `json:"bankId"`
AccountId string `json:"accountId"`
AccountName string `json:"accountName"`
AccountType string `json:"accountType"`
Last4 string `json:"last4"`
CurrentBalance float64 `json:"currentBalance"`
}
type Card struct {
AccountId string `json:"accountId"`
CardId string `json:"cardId"`
Last4 string `json:"last4"`
ExpiryMonth string `json:"expiryMonth"`
ExpiryYear string `json:"expiryYear"`
CVV string `json:"cvv"`
Active bool `json:"active"`
}
type Transaction struct {
AccountId string `json:"accountId"`
TransactionId string `json:"transactionId"`
TransactionDate time.Time `json:"transactionDate"`
Amount float64 `json:"amount"`
TransactionType string `json:"transactionType"`
Description string `json:"description"`
CardId *string `json:"cardId"`
}