pokepay_partner_ruby_sdk 0.3.2 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/release-pr.yml +18 -0
  3. data/Gemfile.lock +1 -1
  4. data/docs/README.md +269 -0
  5. data/docs/account.md +159 -0
  6. data/docs/bank_pay.md +235 -0
  7. data/docs/bill.md +365 -0
  8. data/docs/bulk.md +121 -0
  9. data/docs/campaign.md +1749 -0
  10. data/docs/cashtray.md +318 -0
  11. data/docs/check.md +883 -0
  12. data/docs/coupon.md +724 -0
  13. data/docs/customer.md +1042 -0
  14. data/docs/error-response.csv +839 -0
  15. data/docs/event.md +308 -0
  16. data/docs/index.md +1279 -305
  17. data/docs/organization.md +292 -0
  18. data/docs/private_money.md +213 -0
  19. data/docs/responses.md +711 -0
  20. data/docs/shop.md +678 -0
  21. data/docs/transaction.md +2021 -0
  22. data/docs/transfer.md +686 -0
  23. data/docs/user.md +3 -0
  24. data/docs/user_device.md +134 -0
  25. data/docs/webhook.md +231 -0
  26. data/lib/pokepay_partner_ruby_sdk/request/activate_user_device.rb +15 -0
  27. data/lib/pokepay_partner_ruby_sdk/request/create_bank.rb +17 -0
  28. data/lib/pokepay_partner_ruby_sdk/request/create_bank_topup_transaction.rb +18 -0
  29. data/lib/pokepay_partner_ruby_sdk/request/create_coupon.rb +19 -0
  30. data/lib/pokepay_partner_ruby_sdk/request/create_external_transaction.rb +2 -2
  31. data/lib/pokepay_partner_ruby_sdk/request/create_transaction_with_cashtray.rb +16 -0
  32. data/lib/pokepay_partner_ruby_sdk/request/create_user_device.rb +15 -0
  33. data/lib/pokepay_partner_ruby_sdk/request/delete_webhook.rb +15 -0
  34. data/lib/pokepay_partner_ruby_sdk/request/get_check.rb +15 -0
  35. data/lib/pokepay_partner_ruby_sdk/request/get_coupon.rb +1 -1
  36. data/lib/pokepay_partner_ruby_sdk/request/get_external_transaction_by_request_id.rb +15 -0
  37. data/lib/pokepay_partner_ruby_sdk/request/get_user_device.rb +15 -0
  38. data/lib/pokepay_partner_ruby_sdk/request/list_banks.rb +15 -0
  39. data/lib/pokepay_partner_ruby_sdk/request/list_checks.rb +15 -0
  40. data/lib/pokepay_partner_ruby_sdk/request/list_organizations.rb +15 -0
  41. data/lib/pokepay_partner_ruby_sdk/request/refund_external_transaction.rb +2 -2
  42. data/lib/pokepay_partner_ruby_sdk/request/update_check.rb +15 -0
  43. data/lib/pokepay_partner_ruby_sdk/request/update_coupon.rb +15 -0
  44. data/lib/pokepay_partner_ruby_sdk/response/bank.rb +28 -0
  45. data/lib/pokepay_partner_ruby_sdk/response/bank_registering_info.rb +13 -0
  46. data/lib/pokepay_partner_ruby_sdk/response/banks.rb +13 -0
  47. data/lib/pokepay_partner_ruby_sdk/response/campaign.rb +6 -0
  48. data/lib/pokepay_partner_ruby_sdk/response/check.rb +2 -0
  49. data/lib/pokepay_partner_ruby_sdk/response/external_transaction_detail.rb +34 -0
  50. data/lib/pokepay_partner_ruby_sdk/response/organization_summary.rb +4 -0
  51. data/lib/pokepay_partner_ruby_sdk/response/paginated_checks.rb +16 -0
  52. data/lib/pokepay_partner_ruby_sdk/response/paginated_organizations.rb +16 -0
  53. data/lib/pokepay_partner_ruby_sdk/response/private_money_summary.rb +4 -0
  54. data/lib/pokepay_partner_ruby_sdk/response/product.rb +2 -0
  55. data/lib/pokepay_partner_ruby_sdk/response/user_device.rb +18 -0
  56. data/lib/pokepay_partner_ruby_sdk/version.rb +1 -1
  57. data/lib/pokepay_partner_ruby_sdk.rb +26 -4
  58. data/partner.yaml +1578 -216
  59. metadata +46 -2
data/docs/transfer.md ADDED
@@ -0,0 +1,686 @@
1
+ # Transfer
2
+
3
+ <a name="get-account-transfer-summary"></a>
4
+ ## GetAccountTransferSummary:
5
+ ウォレットを指定して取引明細種別毎の集計を返す
6
+
7
+ ```RUBY
8
+ response = $client.send(Pokepay::Request::GetAccountTransferSummary.new(
9
+ "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # account_id: ウォレットID
10
+ from: "2023-06-23T21:17:23.000000Z", # 集計期間の開始時刻
11
+ to: "2023-06-14T19:07:49.000000Z", # 集計期間の終了時刻
12
+ transfer_types: ["topup", "payment"] # 取引明細種別 (複数指定可)
13
+ ))
14
+ ```
15
+
16
+
17
+
18
+ ### Parameters
19
+ **`account_id`**
20
+
21
+
22
+ ウォレットIDです。
23
+
24
+ ここで指定したウォレットIDの取引明細レベルでの集計を取得します。
25
+
26
+ ```json
27
+ {
28
+ "type": "string",
29
+ "format": "uuid"
30
+ }
31
+ ```
32
+
33
+ **`from`**
34
+
35
+
36
+
37
+ ```json
38
+ {
39
+ "type": "string",
40
+ "format": "date-time"
41
+ }
42
+ ```
43
+
44
+ **`to`**
45
+
46
+
47
+
48
+ ```json
49
+ {
50
+ "type": "string",
51
+ "format": "date-time"
52
+ }
53
+ ```
54
+
55
+ **`transfer_types`**
56
+
57
+
58
+ 取引明細の種別でフィルターします。
59
+ 以下の種別を指定できます。
60
+
61
+ - payment
62
+ エンドユーザーから店舗への送金取引(支払い取引)
63
+ - topup
64
+ 店舗からエンドユーザーへの送金取引(チャージ取引)
65
+ - campaign-topup
66
+ キャンペーンによるエンドユーザーへのポイント付与取引(ポイントチャージ)
67
+ - use-coupon
68
+ 支払い時のクーポン使用による値引き取引
69
+ - refund-payment
70
+ 支払い取引に対するキャンセル取引
71
+ - refund-topup
72
+ チャージ取引に対するキャンセル取引
73
+ - refund-campaign
74
+ キャンペーンによるポイント付与取引に対するキャンセル取引
75
+ - refund-coupon
76
+ クーポン使用による値引き取引に対するキャンセル取引
77
+ - exchange-inflow
78
+ 交換による他マネーからの流入取引
79
+ - exchange-outflow
80
+ 交換による他マネーへの流出取引
81
+ - refund-exchange-inflow
82
+ 交換による他マネーからの流入取引に対するキャンセル取引
83
+ - refund-exchange-outflow
84
+ 交換による他マネーへの流出取引に対するキャンセル取引
85
+
86
+ ```json
87
+ {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string",
91
+ "enum": [
92
+ "payment",
93
+ "topup",
94
+ "campaign-topup",
95
+ "use-coupon",
96
+ "refund-payment",
97
+ "refund-topup",
98
+ "refund-campaign",
99
+ "refund-coupon",
100
+ "exchange-inflow",
101
+ "exchange-outflow",
102
+ "refund-exchange-inflow",
103
+ "refund-exchange-outflow"
104
+ ]
105
+ }
106
+ }
107
+ ```
108
+
109
+
110
+
111
+ 成功したときは
112
+ [AccountTransferSummary](./responses.md#account-transfer-summary)
113
+ を返します
114
+
115
+
116
+
117
+ ---
118
+
119
+
120
+ <a name="list-transfers"></a>
121
+ ## ListTransfers
122
+
123
+ ```RUBY
124
+ response = $client.send(Pokepay::Request::ListTransfers.new(
125
+ from: "2021-03-22T20:29:34.000000Z",
126
+ to: "2024-01-28T16:06:14.000000Z",
127
+ page: 776,
128
+ per_page: 7651,
129
+ shop_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
130
+ shop_name: "uWQvyjmdKhWFzroFJfg0zCih9qHu842U5SnXNqipKVsIIUjVYx3ZiMVPZEq0xgguEtAXJ6WozfUGo1oVRA1PV2JD5SjzUvS2Jlq6P89tC2Mi1P",
131
+ customer_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
132
+ customer_name: "Re6ex8zQnoMXPxIs0d6X24reGHeQvAPqGMsA1rgfPu4olvC1KDDE1G2mGU9YeDH5Tysjz5v4HW6eqkSknjWS4aW80Xp5YCo9TXEMx6Q3N4lydCpBzThmgOIjIatpE7508LaYMNkxpSQqkfWLu8WbqqwjfwNPVeBo88egFulBO0tWJ93Y52C590AS7UiB0DiDGREmImyJDbbC2wEGBfcAGc0EsTxq",
133
+ transaction_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
134
+ private_money_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
135
+ is_modified: true,
136
+ transaction_types: ["exchange"],
137
+ transfer_types: ["exchange", "payment", "coupon", "campaign"], # 取引明細の種類でフィルターします。
138
+ description: "店頭QRコードによる支払い" # 取引詳細説明文
139
+ ))
140
+ ```
141
+
142
+
143
+
144
+ ### Parameters
145
+ **`from`**
146
+
147
+
148
+
149
+ ```json
150
+ {
151
+ "type": "string",
152
+ "format": "date-time"
153
+ }
154
+ ```
155
+
156
+ **`to`**
157
+
158
+
159
+
160
+ ```json
161
+ {
162
+ "type": "string",
163
+ "format": "date-time"
164
+ }
165
+ ```
166
+
167
+ **`page`**
168
+
169
+
170
+
171
+ ```json
172
+ {
173
+ "type": "integer",
174
+ "minimum": 1
175
+ }
176
+ ```
177
+
178
+ **`per_page`**
179
+
180
+
181
+
182
+ ```json
183
+ {
184
+ "type": "integer",
185
+ "minimum": 1
186
+ }
187
+ ```
188
+
189
+ **`shop_id`**
190
+
191
+
192
+
193
+ ```json
194
+ {
195
+ "type": "string",
196
+ "format": "uuid"
197
+ }
198
+ ```
199
+
200
+ **`shop_name`**
201
+
202
+
203
+
204
+ ```json
205
+ {
206
+ "type": "string",
207
+ "maxLength": 256
208
+ }
209
+ ```
210
+
211
+ **`customer_id`**
212
+
213
+
214
+
215
+ ```json
216
+ {
217
+ "type": "string",
218
+ "format": "uuid"
219
+ }
220
+ ```
221
+
222
+ **`customer_name`**
223
+
224
+
225
+
226
+ ```json
227
+ {
228
+ "type": "string",
229
+ "maxLength": 256
230
+ }
231
+ ```
232
+
233
+ **`transaction_id`**
234
+
235
+
236
+
237
+ ```json
238
+ {
239
+ "type": "string",
240
+ "format": "uuid"
241
+ }
242
+ ```
243
+
244
+ **`private_money_id`**
245
+
246
+
247
+
248
+ ```json
249
+ {
250
+ "type": "string",
251
+ "format": "uuid"
252
+ }
253
+ ```
254
+
255
+ **`is_modified`**
256
+
257
+
258
+
259
+ ```json
260
+ {
261
+ "type": "boolean"
262
+ }
263
+ ```
264
+
265
+ **`transaction_types`**
266
+
267
+
268
+
269
+ ```json
270
+ {
271
+ "type": "array",
272
+ "items": {
273
+ "type": "string",
274
+ "enum": [
275
+ "topup",
276
+ "payment",
277
+ "transfer",
278
+ "exchange",
279
+ "cashback",
280
+ "expire"
281
+ ]
282
+ }
283
+ }
284
+ ```
285
+
286
+ **`transfer_types`**
287
+
288
+
289
+ 取引明細の種類でフィルターします。
290
+
291
+ 以下の種類を指定できます。
292
+
293
+ 1. topup
294
+ 店舗からエンドユーザーへの送金取引(チャージ)、またはそのキャンセル取引
295
+
296
+ 2. payment
297
+ エンドユーザーから店舗への送金取引(支払い)、またはそのキャンセル取引
298
+
299
+ 3. exchange
300
+ 他マネーへの流出/流入
301
+
302
+ 4. campaign
303
+ 取引に対するポイント還元キャンペーンによるポイント付与、またはそのキャンセル取引
304
+
305
+ 5. coupon
306
+ クーポンによる値引き処理、またはそのキャンセル取引
307
+
308
+ 6. cashback
309
+ 退会時の返金取引
310
+
311
+ 7. expire
312
+ 退会時失効取引
313
+
314
+ ```json
315
+ {
316
+ "type": "array",
317
+ "items": {
318
+ "type": "string",
319
+ "enum": [
320
+ "topup",
321
+ "payment",
322
+ "exchange",
323
+ "transfer",
324
+ "coupon",
325
+ "campaign",
326
+ "cashback",
327
+ "expire"
328
+ ]
329
+ }
330
+ }
331
+ ```
332
+
333
+ **`description`**
334
+
335
+
336
+ 取引詳細を指定の取引詳細説明文でフィルターします。
337
+
338
+ 取引詳細説明文が完全一致する取引のみ抽出されます。取引詳細説明文は最大200文字で記録されています。
339
+
340
+ ```json
341
+ {
342
+ "type": "string",
343
+ "maxLength": 200
344
+ }
345
+ ```
346
+
347
+
348
+
349
+ 成功したときは
350
+ [PaginatedTransfers](./responses.md#paginated-transfers)
351
+ を返します
352
+
353
+ ### Error Responses
354
+ |status|type|ja|en|
355
+ |---|---|---|---|
356
+ |403|NULL|NULL|NULL|
357
+
358
+
359
+
360
+ ---
361
+
362
+
363
+ <a name="list-transfers-v2"></a>
364
+ ## ListTransfersV2
365
+
366
+ ```RUBY
367
+ response = $client.send(Pokepay::Request::ListTransfersV2.new(
368
+ shop_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # 店舗ID
369
+ shop_name: "FYcLTC4xCABLekowD1pN0MSUSS", # 店舗名
370
+ customer_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # エンドユーザーID
371
+ customer_name: "62wEl3iPUkIv4a2NsBAg7OoWmbOWXvcqkH6OCG8bjnFs6Wxag7kVTYLZtjqA6blCNXCxB23NKDv8dBki6rCZ5MRu3n3kWR611LhXRF1WjDXemYssWVQAa0", # エンドユーザー名
372
+ transaction_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # 取引ID
373
+ private_money_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # マネーID
374
+ is_modified: false, # キャンセルフラグ
375
+ transaction_types: ["exchange", "payment"], # 取引種別 (複数指定可)、チャージ=topup、支払い=payment
376
+ next_page_cursor_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # 次ページへ遷移する際に起点となるtransferのID
377
+ prev_page_cursor_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", # 前ページへ遷移する際に起点となるtransferのID
378
+ per_page: 50, # 1ページ分の取引数
379
+ transfer_types: ["expire", "cashback"], # 取引明細種別 (複数指定可)
380
+ description: "店頭QRコードによる支払い", # 取引詳細説明文
381
+ from: "2022-05-13T03:08:57.000000Z", # 開始日時
382
+ to: "2020-08-03T21:57:14.000000Z" # 終了日時
383
+ ))
384
+ ```
385
+
386
+
387
+
388
+ ### Parameters
389
+ **`shop_id`**
390
+
391
+
392
+ 店舗IDです。
393
+
394
+ フィルターとして使われ、指定された店舗での取引のみ一覧に表示されます。
395
+
396
+ ```json
397
+ {
398
+ "type": "string",
399
+ "format": "uuid"
400
+ }
401
+ ```
402
+
403
+ **`shop_name`**
404
+
405
+
406
+ 店舗名です。
407
+
408
+ フィルターとして使われ、入力された名前に部分一致する店舗での取引のみ一覧に表示されます。
409
+
410
+ ```json
411
+ {
412
+ "type": "string",
413
+ "maxLength": 256
414
+ }
415
+ ```
416
+
417
+ **`customer_id`**
418
+
419
+
420
+ エンドユーザーIDです。
421
+
422
+ フィルターとして使われ、指定されたエンドユーザーの取引のみ一覧に表示されます。
423
+
424
+ ```json
425
+ {
426
+ "type": "string",
427
+ "format": "uuid"
428
+ }
429
+ ```
430
+
431
+ **`customer_name`**
432
+
433
+
434
+ エンドユーザー名です。
435
+
436
+ フィルターとして使われ、入力された名前に部分一致するエンドユーザーでの取引のみ一覧に表示されます。
437
+
438
+ ```json
439
+ {
440
+ "type": "string",
441
+ "maxLength": 256
442
+ }
443
+ ```
444
+
445
+ **`transaction_id`**
446
+
447
+
448
+ 取引IDです。
449
+
450
+ フィルターとして使われ、指定された取引IDに部分一致(前方一致)する取引のみが一覧に表示されます。
451
+
452
+ ```json
453
+ {
454
+ "type": "string",
455
+ "format": "uuid"
456
+ }
457
+ ```
458
+
459
+ **`private_money_id`**
460
+
461
+
462
+ マネーIDです。
463
+
464
+ 指定したマネーでの取引が一覧に表示されます。
465
+
466
+ ```json
467
+ {
468
+ "type": "string",
469
+ "format": "uuid"
470
+ }
471
+ ```
472
+
473
+ **`is_modified`**
474
+
475
+
476
+ キャンセルフラグです。
477
+
478
+ これにtrueを指定するとキャンセルされた取引のみ一覧に表示されます。
479
+ デフォルト値はfalseで、キャンセルの有無にかかわらず一覧に表示されます。
480
+
481
+ ```json
482
+ {
483
+ "type": "boolean"
484
+ }
485
+ ```
486
+
487
+ **`transaction_types`**
488
+
489
+
490
+ 取引の種類でフィルターします。
491
+
492
+ 以下の種類を指定できます。
493
+
494
+ 1. topup
495
+ 店舗からエンドユーザーへの送金取引(チャージ)
496
+
497
+ 2. payment
498
+ エンドユーザーから店舗への送金取引(支払い)
499
+
500
+ 3. exchange-outflow
501
+ 他マネーへの流出
502
+ private_money_idが指定されたとき、そのマネーから見て流出方向の交換取引が抽出されます。
503
+ private_money_idを省略した場合は表示されません。
504
+
505
+ 4. exchange-inflow
506
+ 他マネーからの流入
507
+ private_money_idが指定されたとき、そのマネーから見て流入方向の交換取引が抽出されます。
508
+ private_money_idを省略した場合は表示されません。
509
+
510
+ 5. cashback
511
+ 退会時返金取引
512
+
513
+ 6. expire
514
+ 退会時失効取引
515
+
516
+ ```json
517
+ {
518
+ "type": "array",
519
+ "items": {
520
+ "type": "string",
521
+ "enum": [
522
+ "topup",
523
+ "payment",
524
+ "transfer",
525
+ "exchange",
526
+ "cashback",
527
+ "expire"
528
+ ]
529
+ }
530
+ }
531
+ ```
532
+
533
+ **`next_page_cursor_id`**
534
+
535
+
536
+ 次ページへ遷移する際に起点となるtransferのID(前ページの末尾要素のID)です。
537
+ 本APIのレスポンスにもnext_page_cursor_idが含まれており、これがnull値の場合は最後のページであることを意味します。
538
+ UUIDである場合は次のページが存在することを意味し、このnext_page_cursor_idをリクエストパラメータに含めることで次ページに遷移します。
539
+
540
+ next_page_cursor_idのtransfer自体は次のページには含まれません。
541
+
542
+ ```json
543
+ {
544
+ "type": "string",
545
+ "format": "uuid"
546
+ }
547
+ ```
548
+
549
+ **`prev_page_cursor_id`**
550
+
551
+
552
+ 前ページへ遷移する際に起点となるtransferのID(次ページの先頭要素のID)です。
553
+
554
+ 本APIのレスポンスにもprev_page_cursor_idが含まれており、これがnull値の場合は先頭のページであることを意味します。
555
+ UUIDである場合は前のページが存在することを意味し、このprev_page_cursor_idをリクエストパラメータに含めることで前ページに遷移します。
556
+
557
+ prev_page_cursor_idのtransfer自体は前のページには含まれません。
558
+
559
+ ```json
560
+ {
561
+ "type": "string",
562
+ "format": "uuid"
563
+ }
564
+ ```
565
+
566
+ **`per_page`**
567
+
568
+
569
+ 1ページ分の取引数です。
570
+
571
+ デフォルト値は50です。
572
+
573
+ ```json
574
+ {
575
+ "type": "integer",
576
+ "minimum": 1,
577
+ "maximum": 1000
578
+ }
579
+ ```
580
+
581
+ **`transfer_types`**
582
+
583
+
584
+ 取引明細の種類でフィルターします。
585
+
586
+ 以下の種類を指定できます。
587
+
588
+ 1. topup
589
+ 店舗からエンドユーザーへの送金取引(チャージ)、またはそのキャンセル取引
590
+
591
+ 2. payment
592
+ エンドユーザーから店舗への送金取引(支払い)、またはそのキャンセル取引
593
+
594
+ 3. exchange
595
+ 他マネーへの流出/流入
596
+
597
+ 4. campaign
598
+ 取引に対するポイント還元キャンペーンによるポイント付与、またはそのキャンセル取引
599
+
600
+ 5. coupon
601
+ クーポンによる値引き処理、またはそのキャンセル取引
602
+
603
+ 6. cashback
604
+ 退会時の返金取引
605
+
606
+ 7. expire
607
+ 退会時失効取引
608
+
609
+ ```json
610
+ {
611
+ "type": "array",
612
+ "items": {
613
+ "type": "string",
614
+ "enum": [
615
+ "topup",
616
+ "payment",
617
+ "exchange",
618
+ "transfer",
619
+ "coupon",
620
+ "campaign",
621
+ "cashback",
622
+ "expire"
623
+ ]
624
+ }
625
+ }
626
+ ```
627
+
628
+ **`description`**
629
+
630
+
631
+ 取引詳細を指定の取引詳細説明文でフィルターします。
632
+
633
+ 取引詳細説明文が完全一致する取引のみ抽出されます。取引詳細説明文は最大200文字で記録されています。
634
+
635
+ ```json
636
+ {
637
+ "type": "string",
638
+ "maxLength": 200
639
+ }
640
+ ```
641
+
642
+ **`from`**
643
+
644
+
645
+ 抽出期間の開始日時です。
646
+
647
+ フィルターとして使われ、開始日時以降に発生した取引のみ一覧に表示されます。
648
+
649
+ ```json
650
+ {
651
+ "type": "string",
652
+ "format": "date-time"
653
+ }
654
+ ```
655
+
656
+ **`to`**
657
+
658
+
659
+ 抽出期間の終了日時です。
660
+
661
+ フィルターとして使われ、終了日時以前に発生した取引のみ一覧に表示されます。
662
+
663
+ ```json
664
+ {
665
+ "type": "string",
666
+ "format": "date-time"
667
+ }
668
+ ```
669
+
670
+
671
+
672
+ 成功したときは
673
+ [PaginatedTransfersV2](./responses.md#paginated-transfers-v2)
674
+ を返します
675
+
676
+ ### Error Responses
677
+ |status|type|ja|en|
678
+ |---|---|---|---|
679
+ |403|unpermitted_admin_user|この管理ユーザには権限がありません|Admin does not have permission|
680
+
681
+
682
+
683
+ ---
684
+
685
+
686
+
data/docs/user.md ADDED
@@ -0,0 +1,3 @@
1
+ # User
2
+
3
+