generated from mythrnr/template-lib-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenario_native_payment.go
309 lines (289 loc) · 9.62 KB
/
scenario_native_payment.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
package paypayopa
import (
"context"
"net/http"
)
// NativePayment provides an API for PayPay's Native Payment functionality.
//
// NativePayment は PayPay のネイティブペイメント機能の API を提供する.
//
// # Docs
//
// https://developer.paypay.ne.jp/products/docs/nativepayment
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit
type NativePayment struct {
client *opaClient
creds *Credentials
}
// NewNativePayment returns a client for Native Payment.
//
// NewNativePayment は Native Payment のクライアントを返す.
func NewNativePayment(creds *Credentials) *NativePayment {
return &NativePayment{
client: newClient(creds),
creds: creds,
}
}
// NewNativePaymentWithHTTPClient returns a Native Payment client
// that performs with a pre-configured *http.Client.
//
// NewNativePaymentWithHTTPClient は設定済みの *http.Client を用いて通信を行う
// Native Payment のクライアントを返す.
func NewNativePaymentWithHTTPClient(
creds *Credentials,
client *http.Client,
) *NativePayment {
return &NativePayment{
client: newClientWithHTTPClient(creds, client),
creds: creds,
}
}
// ConsultExpectedCashbackInfo consult expected cashback info
// before placing the order.
//
// ConsultExpectedCashbackInfo は注文する前に, 予定のキャッシュバック情報を参照する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/consultExpectedCashbackInfo
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/consultExpectedCashbackInfo
func (n *NativePayment) ConsultExpectedCashbackInfo(
ctx context.Context,
req *ConsultExpectedCashbackInfoPayload,
) (*CashbackInfoResponse, *ResultInfo, error) {
return consultExpectedCashbackInfo(ctx, n.client, req)
}
// CreatePayment create a naitve payment and start the money transfer.
//
// CreatePayment は決済リクエストを作成して送金を開始する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/consultExpectedCashbackInfo
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/consultExpectedCashbackInfo
func (n *NativePayment) CreatePayment(
ctx context.Context,
req *CreatePaymentPayload,
) (*Payment, *ResultInfo, error) {
return createPayment(ctx, n.client, req)
}
// GetPaymentDetails retrieves the details of a payment.
//
// GetPaymentDetails は決済の詳細を取得する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getPaymentDetails
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getPaymentDetails
func (n *NativePayment) GetPaymentDetails(
ctx context.Context,
merchantPaymentID string,
) (*Payment, *ResultInfo, error) {
return getPaymentDetails(ctx, n.client, merchantPaymentID)
}
// CancelPayment cancels the payment.
//
// CancelPayment は支払いのキャンセルをする.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/cancelPayment
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/cancelPayment
func (n *NativePayment) CancelPayment(
ctx context.Context,
merchantPaymentID string,
) (*ResultInfo, error) {
return cancelPayment(ctx, n.client, merchantPaymentID)
}
// RefundPayment refunds the payment.
//
// RefundPayment は返金を行う.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/refundPayment
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/refundPayment
func (n *NativePayment) RefundPayment(
ctx context.Context,
req *RefundPaymentPayload,
) (*RefundResponse, *ResultInfo, error) {
return refundPayment(ctx, n.client, req)
}
// GetRefundDetails gets the refund details.
//
// GetRefundDetails は返金の詳細を取得する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getRefundDetails
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getRefundDetails
func (n *NativePayment) GetRefundDetails(
ctx context.Context,
merchantRefundID string,
) (*RefundResponse, *ResultInfo, error) {
return getRefundDetails(ctx, n.client, merchantRefundID)
}
// CreateTopupQRCode creates qr code for the user.
//
// CreateTopupQRCode はトップアップ用のQRコードを作成する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/createTopUpQRCode
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/createTopUpQRCode
func (n *NativePayment) CreateTopupQRCode(
ctx context.Context,
req *CreateTopupQRCodePayload,
) (*TopupQRCodeResponse, *ResultInfo, error) {
return createTopupQRCode(ctx, n.client, req)
}
// GetTopupDetails gets the details of topup done using QR Code.
//
// GetTopupDetails はトップアップ用のQRコードの詳細を取得する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getTopUpQRDetails
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getTopUpQRDetails
func (n *NativePayment) GetTopupDetails(
ctx context.Context,
merchantTopUpID string,
) (*TopupQRCodeDetailsResponse, *ResultInfo, error) {
return getTopupDetails(ctx, n.client, merchantTopUpID)
}
// DeleteTopupQRCode deletes the topup QR code.
//
// DeleteTopupQRCode はトップアップ用のQRコードを削除する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/deleteTopUpQrCode
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/deleteTopUpQrCode
func (n *NativePayment) DeleteTopupQRCode(
ctx context.Context,
codeID string,
) (*ResultInfo, error) {
return deleteTopupQRCode(ctx, n.client, codeID)
}
// GetUserWalletBalance gets Total Amount in User Wallet.
//
// GetUserWalletBalance はユーザーの残高を参照する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getBalance
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getBalance
func (n *NativePayment) GetUserWalletBalance(
ctx context.Context,
req *GetUserWalletBalancePayload,
) (*UserWalletBalanceResponse, *ResultInfo, error) {
return getUserWalletBalance(ctx, n.client, req)
}
// CheckUserWalletBalance check sif user has enough balance
// to make a payment Total Amount in User Wallet.
//
// CheckUserWalletBalance はユーザーが支払いをするための十分な残高があるかを確認する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/checkWalletBalance
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/checkWalletBalance
func (n *NativePayment) CheckUserWalletBalance(
ctx context.Context,
req *CheckUserWalletBalancePayload,
) (*CheckUserWalletBalance, *ResultInfo, error) {
return checkUserWalletBalance(ctx, n.client, req)
}
// CreateAccountLinkQRCode creates a ACCOUNT LINK QR
// and display it to the user.
//
// CreateAccountLinkQRCode はアカウントリンクQRを作成し, ユーザーに表示する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/account_link.html#operation/createQRSession
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/account_link.html#operation/createQRSession
func (n *NativePayment) CreateAccountLinkQRCode(
ctx context.Context,
req *CreateAccountLinkQRCodePayload,
) (*CreateAccountLinkQRCodeResponse, *ResultInfo, error) {
return createAccountLinkQRCode(ctx, n.client, req)
}
// UnlinkUser unlinks an user from the client.
//
// UnlinkUser はクライアントからユーザーのリンクを解除する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/unlinkUser
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/unlinkUser
func (n *NativePayment) UnlinkUser(
ctx context.Context,
userAuthorizationID string,
) (*ResultInfo, error) {
return unlinkUser(ctx, n.client, userAuthorizationID)
}
// GetUserAuthorizationStatus gets the authorization status of a user.
//
// GetUserAuthorizationStatus はユーザー認可状態を取得する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getUserAuthorizationStatus
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getUserAuthorizationStatus
func (n *NativePayment) GetUserAuthorizationStatus(
ctx context.Context,
userAuthorizationID string,
) (*GetUserAuthorizationStatusResponse, *ResultInfo, error) {
return getUserAuthorizationStatus(ctx, n.client, userAuthorizationID)
}
// GetMaskedUserProfile retrieves the masked phone number of the user.
//
// GetMaskedUserProfile はマスクされたユーザーの電話番号を取得する.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/direct_debit#operation/getMaskedUserProfile
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/direct_debit#operation/getMaskedUserProfile
func (n *NativePayment) GetMaskedUserProfile(
ctx context.Context,
userAuthorizationID string,
) (*GetMaskedUserProfileResponse, *ResultInfo, error) {
return getMaskedUserProfile(ctx, n.client, userAuthorizationID)
}
// DecodeResponseToken decodes and returns the JWT of
// the user's authorization result.
//
// DecodeResponseToken はユーザーの認可の結果の JWT をデコードして返す.
//
// # API Docs
//
// EN: https://www.paypay.ne.jp/opa/doc/v1.0/account_link.html
//
// JP: https://www.paypay.ne.jp/opa/doc/jp/v1.0/account_link.html
func (n *NativePayment) DecodeResponseToken(
_ context.Context,
token string,
) (*AuthorizationResponseToken, error) {
return decodeAuthorizationResponseToken(n.creds, token)
}