File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ type BalanceResponse struct {
66
66
67
67
// BalanceData - ..
68
68
type BalanceData struct {
69
- ID string `json:"id"`
69
+ ID int `json:"id"`
70
70
Currency CurrencyData `json:"currency"`
71
71
Reserve float64 `json:"reserve"`
72
72
Balance float64 `json:"balance"`
@@ -98,7 +98,7 @@ type PairsDataContainer struct {
98
98
99
99
// PairData - ..
100
100
type PairData struct {
101
- ID int `json:"pair_id"` // example: 25
101
+ ID int64 `json:"pair_id"` // example: 25
102
102
PairCode string `json:"pair"` // example: crp_usdt
103
103
PairTitle string `json:"pair_show"` // example: CRP / USDT
104
104
CoinsGroup string `json:"group"` // example: crp
@@ -126,7 +126,7 @@ type MarketDataContainer struct {
126
126
127
127
// CurrencyData - ..
128
128
type CurrencyData struct {
129
- ID string `json:"id"`
129
+ ID int64 `json:"id"`
130
130
Name string `json:"name"` // example: crp
131
131
FullName string `json:"fullname"` // example: Utopia Crypton
132
132
AppName string `json:"appname"` // example: crypton
You can’t perform that action at this time.
0 commit comments