Files
digifi-swagger/schemas/PenalChargeResponse.json
T
2025-03-24 15:15:31 +01:00

22 lines
590 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"type": "object",
"properties": {
"resultCode": {
"type": "string",
"description": "Result code of executed transaction, e.g. (00 Success etc.) see result codes table",
"example": "00"
},
"resultDescription": {
"type": "string",
"description": "Description of provided result code",
"example": "Penal charge debited successfully"
}
},
"required": [
"resultCode",
"resultDescription"
],
"xml": {
"name": "PenalChargeResponse"
}
}