-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgetstate.go
47 lines (38 loc) · 1.56 KB
/
getstate.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
package tinkoff
import "context"
type GetStateRequest struct {
BaseRequest
PaymentID string `json:"PaymentId"` // Идентификатор платежа в системе банка. По офф. документации это number(20), но фактически значение передается в виде строки
ClientIP string `json:"IP,omitempty"` // IP-адрес покупателя
}
func (i *GetStateRequest) GetValuesForToken() map[string]string {
return map[string]string{
"IP": i.ClientIP,
"PaymentId": i.PaymentID,
}
}
type GetStateResponse struct {
BaseResponse
OrderID string `json:"OrderId"` // Номер заказа в системе Продавца
Status string `json:"Status"` // Статус платежа
PaymentID string `json:"PaymentId"` // Уникальный идентификатор транзакции в системе Банка
}
// GetState returns info about payment
// Deprecated: use GetStateWithContext instead
func (c *Client) GetState(request *GetStateRequest) (*GetStateResponse, error) {
return c.GetStateWithContext(context.Background(), request)
}
// GetStateWithContext returns info about payment
func (c *Client) GetStateWithContext(ctx context.Context, request *GetStateRequest) (*GetStateResponse, error) {
response, err := c.PostRequestWithContext(ctx, "/GetState", request)
if err != nil {
return nil, err
}
defer response.Body.Close()
var res GetStateResponse
err = c.decodeResponse(response, &res)
if err != nil {
return nil, err
}
return &res, res.Error()
}