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

22 lines
580 B
JSON
Raw Permalink 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": "Request is received"
}
},
"required": [
"resultCode",
"resultDescription"
],
"xml": {
"name": "CustomerConsentResponse"
}
}