-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
82 lines (76 loc) · 1.92 KB
/
models.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
type BinData struct {
Result int `json:"result"`
Message string `json:"message"`
Data struct {
Card struct {
Scheme string `json:"scheme"`
Type string `json:"type"`
Category string `json:"category"`
Length int `json:"length"`
Checkluhn int `json:"checkluhn"`
Cvvlen int `json:"cvvlen"`
} `json:"card"`
Country struct {
Name string `json:"name"`
Code string `json:"code"`
Flag string `json:"flag"`
Currency string `json:"currency"`
CurrencyCode string `json:"currency_code"`
} `json:"country"`
Bank struct {
Name string `json:"name"`
Website string `json:"website"`
Phone string `json:"phone"`
} `json:"bank"`
} `json:"data"`
}
type BankInfo struct {
Name string `json:"name"`
Website string `json:"website"`
Phone string `json:"phone"`
}
type CardInfo struct {
Scheme string `json:"scheme"`
Type string `json:"type"`
Category string `json:"category"`
}
type CountryInfo struct {
Name string `json:"name"`
Code string `json:"code"`
}
type DataInfo struct {
CardInfo struct {
Scheme string `json:"scheme"`
Type string `json:"type"`
Category string `json:"category"`
} `json:"card_info"`
Bank struct {
Name string `json:"name"`
Website string `json:"website"`
Phone string `json:"phone"`
} `json:"bank"`
Country struct {
Name string `json:"name"`
Code string `json:"code"`
} `json:"country"`
}
type BinResponseData struct {
Result string `json:"result"`
Data struct {
CardInfo struct {
Scheme string `json:"scheme"`
Type string `json:"type"`
Category string `json:"category"`
} `json:"card_info"`
Bank struct {
Name string `json:"name"`
Website string `json:"website"`
Phone string `json:"phone"`
} `json:"bank"`
Country struct {
Name string `json:"name"`
Code string `json:"code"`
} `json:"country"`
} `json:"data"`
}