-
Notifications
You must be signed in to change notification settings - Fork 14
/
checkorder.go
48 lines (40 loc) · 1.57 KB
/
checkorder.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
package tinkoff
import (
"context"
)
type CheckOrderRequest struct {
BaseRequest
OrderID string `json:"OrderId"` // Номер заказа в системе Продавца
}
type CheckOrderResponse struct {
BaseResponse
OrderID string `json:"OrderId"` // Номер заказа в системе Продавца
Payments []PaymentsCheckOrder
}
type PaymentsCheckOrder struct {
PaymentID string `json:"PaymentId"`
Amount uint64 `json:"Amount,omitempty"` // Стоимость товара в копейках
Status string `json:"Status"` // Статус платежа
RRN string `json:"RRN,omitempty"` // Внутренний номер операции в платежной системе — кроме операций по СБП.
Success bool `json:"Success"` // Успешность операции
ErrorCode string `json:"ErrorCode"` // Код ошибки, «0» - если успешно
ErrorMessage string `json:"Message,omitempty"` // Краткое описание ошибки
}
func (i *CheckOrderRequest) GetValuesForToken() map[string]string {
return map[string]string{
"OrderID": i.OrderID,
}
}
func (c *Client) CheckOrderWithContext(ctx context.Context, request *CheckOrderRequest) (*CheckOrderResponse, error) {
response, err := c.PostRequestWithContext(ctx, "/CheckOrder", request)
if err != nil {
return nil, err
}
defer response.Body.Close()
var res CheckOrderResponse
err = c.decodeResponse(response, &res)
if err != nil {
return nil, err
}
return &res, res.Error()
}