-
Notifications
You must be signed in to change notification settings - Fork 69
/
fiat.go
183 lines (164 loc) · 4.61 KB
/
fiat.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package binance_connector
import (
"context"
"encoding/json"
"net/http"
)
const (
fiatDepositWithdrawHistory = "/sapi/v1/fiat/orders"
)
type GetFiatDepositWithdrawHistoryService struct {
c *Client
transactionType *string
beginTime *uint64
endTime *uint64
page *int
rows *int
}
func (s *GetFiatDepositWithdrawHistoryService) TransactionType(transactionType string) *GetFiatDepositWithdrawHistoryService {
s.transactionType = &transactionType
return s
}
func (s *GetFiatDepositWithdrawHistoryService) BeginTime(beginTime uint64) *GetFiatDepositWithdrawHistoryService {
s.beginTime = &beginTime
return s
}
func (s *GetFiatDepositWithdrawHistoryService) EndTime(endTime uint64) *GetFiatDepositWithdrawHistoryService {
s.endTime = &endTime
return s
}
func (s *GetFiatDepositWithdrawHistoryService) Page(page int) *GetFiatDepositWithdrawHistoryService {
s.page = &page
return s
}
func (s *GetFiatDepositWithdrawHistoryService) Rows(rows int) *GetFiatDepositWithdrawHistoryService {
s.rows = &rows
return s
}
func (s *GetFiatDepositWithdrawHistoryService) Do(ctx context.Context) (res *GetFiatDepositWithdrawHistoryResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: fiatDepositWithdrawHistory,
secType: secTypeSigned,
}
r.setParam("transactionType", *s.transactionType)
if s.beginTime != nil {
r.setParam("beginTime", *s.beginTime)
}
if s.endTime != nil {
r.setParam("endTime", *s.endTime)
}
if s.page != nil {
r.setParam("page", *s.page)
}
if s.rows != nil {
r.setParam("rows", *s.rows)
}
data, err := s.c.callAPI(ctx, r)
if err != nil {
return nil, err
}
res = new(GetFiatDepositWithdrawHistoryResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
type GetFiatDepositWithdrawHistoryResponse struct {
Code string `json:"code"`
Message string `json:"message"`
Data []struct {
OrderNo string `json:"orderNo"`
FiatCurrency string `json:"fiatCurrency"`
IndicatedAmount string `json:"indicatedAmount"`
Amount string `json:"amount"`
TotalFee string `json:"totalFee"`
Method string `json:"method"`
Status string `json:"status"`
CreateTime uint64 `json:"createTime"`
UpdateTime uint64 `json:"updateTime"`
}
Total int64 `json:"total"`
Success bool `json:"success"`
}
const (
fiatPaymentHistory = "/sapi/v1/fiat/payments"
)
type GetFiatPaymentHistoryService struct {
c *Client
transactionType *string
beginTime *uint64
endTime *uint64
page *int
rows *int
}
func (s *GetFiatPaymentHistoryService) TransactionType(transactionType string) *GetFiatPaymentHistoryService {
s.transactionType = &transactionType
return s
}
func (s *GetFiatPaymentHistoryService) BeginTime(beginTime uint64) *GetFiatPaymentHistoryService {
s.beginTime = &beginTime
return s
}
func (s *GetFiatPaymentHistoryService) EndTime(endTime uint64) *GetFiatPaymentHistoryService {
s.endTime = &endTime
return s
}
func (s *GetFiatPaymentHistoryService) Page(page int) *GetFiatPaymentHistoryService {
s.page = &page
return s
}
func (s *GetFiatPaymentHistoryService) Rows(rows int) *GetFiatPaymentHistoryService {
s.rows = &rows
return s
}
func (s *GetFiatPaymentHistoryService) Do(ctx context.Context) (res *GetFiatPaymentHistoryResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: fiatPaymentHistory,
secType: secTypeSigned,
}
r.setParam("transactionType", *s.transactionType)
if s.beginTime != nil {
r.setParam("beginTime", *s.beginTime)
}
if s.endTime != nil {
r.setParam("endTime", *s.endTime)
}
if s.page != nil {
r.setParam("page", *s.page)
}
if s.rows != nil {
r.setParam("rows", *s.rows)
}
data, err := s.c.callAPI(ctx, r)
if err != nil {
return nil, err
}
res = new(GetFiatPaymentHistoryResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
type GetFiatPaymentHistoryResponse struct {
Code string `json:"code"`
Message string `json:"message"`
Data []struct {
OrderNo string `json:"orderNo"`
SourceAmount string `json:"sourceAmount"`
FiatCurrency string `json:"fiatCurrency"`
ObtainAmount string `json:"obtainAmount"`
CryptoCurrency string `json:"cryptoCurrency"`
TotalFee string `json:"totalFee"`
Price string `json:"price"`
Status string `json:"status"`
PaymentMethod string `json:"paymentMethod"`
CreateTime uint64 `json:"createTime"`
UpdateTime uint64 `json:"updateTime"`
}
Total int64 `json:"total"`
Success bool `json:"success"`
}