forked from nikita-vanyasin/tinkoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cancel.go
44 lines (37 loc) · 1.69 KB
/
cancel.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
package tinkoff
type CancelRequest struct {
BaseRequest
PaymentID string `json:"PaymentId"` // Идентификатор платежа в системе банка. По офф. документации это number(20), но фактически значение передается в виде строки
ClientIP string `json:"IP,omitempty"` // IP-адрес покупателя
Amount uint64 `json:"Amount,omitempty"` // Сумма возврата в копейках
Receipt *Receipt `json:"Receipt,omitempty"` // Чек
}
func (i *CancelRequest) GetValuesForToken() map[string]string {
v := map[string]string{
"PaymentId": i.PaymentID,
"IP": i.ClientIP,
}
serializeUintToMapIfNonEmpty(&v, "Amount", i.Amount)
return v
}
type CancelResponse struct {
BaseResponse
OriginalAmount uint64 `json:"OriginalAmount"` // Сумма в копейках до операции отмены
NewAmount uint64 `json:"NewAmount"` // Сумма в копейках после операции отмены
OrderID string `json:"OrderId"` // Номер заказа в системе Продавца
Status string `json:"Status"` // Статус транзакции
PaymentID string `json:"PaymentId"` // Уникальный идентификатор транзакции в системе Банка
}
func (c *Client) Cancel(request *CancelRequest) (*CancelResponse, error) {
response, err := c.PostRequest("/Cancel", request)
if err != nil {
return nil, err
}
defer response.Body.Close()
var res CancelResponse
err = c.decodeResponse(response, &res)
if err != nil {
return nil, err
}
return &res, res.Error()
}