-
Notifications
You must be signed in to change notification settings - Fork 13
/
qr.go
51 lines (41 loc) · 1.71 KB
/
qr.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
package tinkoff
import "context"
const (
QRTypePayload = "PAYLOAD"
QRTypeImage = "IMAGE"
)
type GetQRRequest struct {
BaseRequest
PaymentID string `json:"PaymentId"` // Идентификатор платежа в системе банка. По офф. документации это number(20), но фактически значение передается в виде строки
DataType string `json:"DataType"` // Тип возвращаемых данных. PAYLOAD (QRTypePayload) – В ответе возвращается только Payload (по-умолчанию). IMAGE (QRTypeImage) – В ответе возвращается SVG изображение QR
}
func (i *GetQRRequest) GetValuesForToken() map[string]string {
return map[string]string{
"PaymentId": i.PaymentID,
"TerminalKey": i.TerminalKey,
"DataType": i.DataType,
}
}
type GetQRResponse struct {
BaseResponse
OrderID string `json:"OrderId"` // Номер заказа в системе Продавца
Data string `json:"Data"` // Payload - или SVG
PaymentID int `json:"PaymentId"` // Идентификатор платежа в системе банка.
}
// Deprecated: use GetQRWithContext instead
func (c *Client) GetQR(request *GetQRRequest) (*GetQRResponse, error) {
return c.GetQRWithContext(context.Background(), request)
}
func (c *Client) GetQRWithContext(ctx context.Context, request *GetQRRequest) (*GetQRResponse, error) {
response, err := c.PostRequestWithContext(ctx, "/GetQr", request)
if err != nil {
return nil, err
}
defer response.Body.Close()
var res GetQRResponse
err = c.decodeResponse(response, &res)
if err != nil {
return nil, err
}
return &res, res.Error()
}