Merge branch 'verify_balance_check' into penal_charge

This commit was merged in pull request #19.
This commit is contained in:
VivianDee
2026-03-18 14:59:30 +01:00
7 changed files with 119 additions and 4 deletions
@@ -0,0 +1,25 @@
{
"type": "object",
"properties": {
"amount": {
"type": "string",
"example": "200"
},
"requestId": {
"type": "string",
"example": "RQ621868"
},
"accountId": {
"type": "string",
"example": "2017821799"
}
},
"required": [
"accountId",
"requestId",
"amount"
],
"xml": {
"name": "VerifyAccountBalanceRequest"
}
}
@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"isSufficient": {
"type": "string",
"example": "true"
}
},
"required": [
"isSufficient"
],
"xml": {
"name": "VerifyAccountBalanceResponse"
}
}