diff options
| author | Shulhan <ms@kilabit.info> | 2023-03-23 11:07:42 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-03-23 11:21:24 +0700 |
| commit | b4d4ce36ad9186b25828f0a350a9ae143ec870e9 (patch) | |
| tree | fe5b03f86de6a817b8b40d18c7026533cac69afa /testdata/merchant/inquiry_test.txt | |
| parent | 548c92ff835de375e2b35add255bd4bf77a3e632 (diff) | |
| download | duitku-b4d4ce36ad9186b25828f0a350a9ae143ec870e9.tar.xz | |
all: fix the response fields on MerchantInquiryResponse
The response fields for MerchantInquiry use statusCode and statusMessage
instead of responseCode and responseDesc.
Diffstat (limited to 'testdata/merchant/inquiry_test.txt')
| -rw-r--r-- | testdata/merchant/inquiry_test.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testdata/merchant/inquiry_test.txt b/testdata/merchant/inquiry_test.txt index 05262d7..dc20f4b 100644 --- a/testdata/merchant/inquiry_test.txt +++ b/testdata/merchant/inquiry_test.txt @@ -10,14 +10,14 @@ <<< response.json { - "responseCode": "", - "responseDesc": "", "merchantCode": "[redacted]", "reference": "$ref", "paymentUrl": "$payment_url", "vaNumber": "$va", "qrString": "", - "amount": "10000" + "amount": "10000", + "statusCode": "00", + "statusMessage": "SUCCESS" } <<< tx_status_response.json |
