Skip to content

Commit

Permalink
Convert json object to json string (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
azizoy authored Nov 23, 2023
1 parent 982c0d6 commit 27ec821
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions source/includes/_biller_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,7 @@ print(data.decode("utf-8"))
"customer_name": "FIRDAUS",
"amount": 832500,
"admin_fee": 2500,
"additional_data": {
"customer_id":"000372190053",
"customer_name":"FIRDAUS",
"total_amount":835000,
// and other data that is passed by Biller from vendor
}
"additional_data": "{\"customer_id\":\"000372190053\",\"customer_name\":\"FIRDAUS\",\"total_amount\":835000}"
},
}
```
Expand Down Expand Up @@ -502,14 +497,7 @@ admin_fee | BigDecimal | Bill's admin fee
"amount": 835000,
"admin_fee": 2500,
"note": "note for payment",
"additional_data": {
"customer_id":"000372190053",
"customer_name":"FIRDAUS",
"total_amount":835000,
"receipt_code":"123123123123",
"settlement_date":"2020-10-19 17:16:17",
// and other data that is passed by Biller from vendor
}
"additional_data": "{\"customer_id\":\"000372190053\",\"customer_name\":\"FIRDAUS\",\"total_amount\":835000,\"receipt_code\":\"123123123123\",\"settlement_date\":\"2020-10-1917:16:17\"}"
},
}
```
Expand Down Expand Up @@ -710,14 +698,7 @@ print(data.decode("utf-8"))
"admin_fee": 2500,
"status": "SUCCESS",
"tx_status_description": "",
"additional_data": {
"customer_id":"000372190053",
"customer_name":"FIRDAUS",
"total_amount":835000,
"receipt_code":"123123123123",
"settlement_date":"2020-10-19 17:16:17",
// and other data that is passed by biller from vendor
}
"additional_data": "{\"customer_id\":\"000372190053\",\"customer_name\":\"FIRDAUS\",\"total_amount\":835000,\"receipt_code\":\"123123123123\",\"settlement_date\":\"2020-10-1917:16:17\"}"
}
}
```
Expand Down

0 comments on commit 27ec821

Please sign in to comment.