Skip to content

Commit

Permalink
Merge pull request #45 from pokepay/release/0.2.7
Browse files Browse the repository at this point in the history
refs/heads/release/0.2.7
  • Loading branch information
masatoi authored Oct 16, 2024
2 parents 5b7e25f + 8c7f2f5 commit e5ef5c1
Show file tree
Hide file tree
Showing 77 changed files with 5,436 additions and 5,564 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'partner-java-sdk'
version '0.2.6'
version '0.2.7'

sourceCompatibility = 1.8

Expand Down
8 changes: 4 additions & 4 deletions docs/account.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
Request request = new ListUserAccounts(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // userId: ユーザーID
)
.page(7596) // ページ番号
.perPage(8261); // 1ページ分の取引数
.page(1170) // ページ番号
.perPage(3512); // 1ページ分の取引数

```

Expand Down Expand Up @@ -74,8 +74,8 @@ Request request = new CreateUserAccount(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // userId: ユーザーID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // privateMoneyId: マネーID
)
.name("xIIOg9CcbCgtxt4qQAP06TDLYKBc2zPf6wToG8lTKcMPiFJX3LNKTomMc8wnROYRP673oHx5N3DOO7AdxANDE2ea2N2bsCqxQkk2AG5TTqX05IlCZ5tUdSwXVRIVCnl") // ウォレット名
.externalId("Zj6NtOwX2FI8Wr1369uaTF42") // 外部ID
.name("qMtHhSfZdXUyjb1NxKa8yAWf3eI4rn2GKxT8MfsHveV88627AlMJYf8MI0c9") // ウォレット名
.externalId("iCp3raZonaiDazAfoV") // 外部ID
.metadata("{\"key1\":\"foo\",\"key2\":\"bar\"}"); // ウォレットに付加するメタデータ

```
Expand Down
18 changes: 15 additions & 3 deletions docs/bank_pay.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Request request = new CreateBank(
"<Deep Link>", // callbackUrl: コールバックURL
"ポケペイタロウ" // kana: ユーザーの氏名 (片仮名で指定)
)
.email("NJhR9grzsE@T9HH.com") // ユーザーのメールアドレス
.email("wpVUwFU1am@kd1F.com") // ユーザーのメールアドレス
.birthdate("19901142"); // 生年月日

```
Expand Down Expand Up @@ -159,10 +159,11 @@ Request request = new CreateBank(
Request request = new CreateBankTopupTransaction(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // userDeviceId: デバイスID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // privateMoneyId: マネーID
6059, // amount: チャージ金額
8003, // amount: チャージ金額
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // bankId: 銀行ID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // requestId: リクエストID
);
)
.receiverUserId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"); // 受け取りユーザーID (デフォルトは自身)

```

Expand Down Expand Up @@ -206,6 +207,17 @@ Request request = new CreateBankTopupTransaction(



```json
{
"type": "string",
"format": "uuid"
}
```

**`receiverUserId`**



```json
{
"type": "string",
Expand Down
24 changes: 12 additions & 12 deletions docs/bill.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@

```JAVA
Request request = new ListBills()
.page(8059) // ページ番号
.perPage(5147) // 1ページの表示数
.billId("zIdrHm6O") // 支払いQRコードのID
.page(2897) // ページ番号
.perPage(1066) // 1ページの表示数
.billId("r") // 支払いQRコードのID
.privateMoneyId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") // マネーID
.organizationCode("-23E-1evC3-m6V-ESLc-029-YOZ-UkK") // 組織コード
.organizationCode("b--BUl96") // 組織コード
.description("test bill") // 取引説明文
.createdFrom("2022-04-17T00:55:51.000000Z") // 作成日時(起点)
.createdTo("2020-04-15T22:23:38.000000Z") // 作成日時(終点)
.createdFrom("2020-02-16T12:28:09.000000Z") // 作成日時(起点)
.createdTo("2022-11-02T03:28:47.000000Z") // 作成日時(終点)
.shopName("bill test shop1") // 店舗名
.shopId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") // 店舗ID
.lowerLimitAmount(4503) // 金額の範囲によるフィルタ(下限)
.upperLimitAmount(605) // 金額の範囲によるフィルタ(上限)
.lowerLimitAmount(8267) // 金額の範囲によるフィルタ(下限)
.upperLimitAmount(7846) // 金額の範囲によるフィルタ(上限)
.setDisabled(true); // 支払いQRコードが無効化されているかどうか

```
Expand Down Expand Up @@ -212,7 +212,7 @@ Request request = new CreateBill(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", // privateMoneyId: 支払いマネーのマネーID
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // shopId: 支払い先(受け取り人)の店舗ID
)
.amount(5417.0) // 支払い額
.amount(7728.0) // 支払い額
.description("test bill"); // 説明文(アプリ上で取引の説明文として表示される)

```
Expand Down Expand Up @@ -276,8 +276,8 @@ Request request = new CreateBill(
|status|type|ja|en|
|---|---|---|---|
|403|unpermitted_admin_user|この管理ユーザには権限がありません|Admin does not have permission|
|422|shop_account_not_found||The shop account is not found|
|422|private_money_not_found||Private money not found|
|422|shop_account_not_found|店舗アカウントが見つかりません|The shop account is not found|
|422|private_money_not_found|マネーが見つかりません|Private money not found|
|422|shop_user_not_found|店舗が見つかりません|The shop user is not found|
|422|account_closed|アカウントは退会しています|The account is closed|
|422|account_pre_closed|アカウントは退会準備中です|The account is pre-closed|
Expand All @@ -296,7 +296,7 @@ Request request = new CreateBill(
Request request = new UpdateBill(
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // billId: 支払いQRコードのID
)
.amount(232.0) // 支払い額
.amount(4321.0) // 支払い額
.description("test bill") // 説明文
.setDisabled(false); // 無効化されているかどうか

Expand Down
10 changes: 5 additions & 5 deletions docs/bulk.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ CSVファイルから一括取引をします。

```JAVA
Request request = new BulkCreateTransaction(
"mtEHAWzKVmwmqN4ax1Q1", // name: 一括取引タスク名
"Fha0", // content: 取引する情報のCSV
"o1JxRbdO7sJMkOiIt9zNKCX0VzisXLLiEpUL" // requestId: リクエストID
"oMxEFE11voG9m7g", // name: 一括取引タスク名
"WI", // content: 取引する情報のCSV
"lidcsFhnnSlOPQSKVW980GqQVfPuvUPiEFV6" // requestId: リクエストID
)
.description("tiIsW57odiOHhS8DsZfAQRFK6oTTeP8tTTuInowX2TMHi2vDKbmu86aUF4jypKaAY4yQaiw0JpUpNfjrUKaUCU4cuncfOgZgC0vnz9vdHX") // 一括取引の説明
.description("DyiAjmPC8FhIFplNkUQpOFZAAuAkdYYYV8q02r77ePIgPu4dPH7ImSF7bIQ97lNoNEqqi11P4GN23Eb6NlDd7BTwpYu4Valw5xiIJ7Q1Cipp2C") // 一括取引の説明
.privateMoneyId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"); // マネーID

```
Expand Down Expand Up @@ -111,7 +111,7 @@ Request request = new BulkCreateTransaction(
|403|unpermitted_admin_user|この管理ユーザには権限がありません|Admin does not have permission|
|403|organization_not_issuer|発行体以外に許可されていない操作です|Unpermitted operation except for issuer organizations.|
|409|NULL|NULL|NULL|
|422|private_money_not_found||Private money not found|
|422|private_money_not_found|マネーが見つかりません|Private money not found|
|422|bulk_transaction_invalid_csv_format|入力されたCSVデータに誤りがあります|Invalid csv format|


Expand Down
Loading

0 comments on commit e5ef5c1

Please sign in to comment.