Code Cleanup

This commit is contained in:
VivianDee
2025-03-19 19:37:53 +01:00
parent e2769472bb
commit 5e848b40d7
58 changed files with 2303 additions and 2144 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"post": {
"tags": [
"NewTransactionCheck"
],
"summary": "New Transaction Check Request",
"description": "New Transaction Check Request",
"operationId": "NewTransactionCheck",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/NewTransactionCheckRequest"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/NewTransactionCheckRequest"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "../schemas/NewTransactionCheckRequest"
}
}
}
},
"responses": {
"200": {
"description": "NewTransactionCheck Successful",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/NewTransactionCheckResponse"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/NewTransactionCheckResponse"
}
}
}
},
"400": {
"description": "Invalid request"
},
"500": {
"description": "Internal server error"
}
}
}
}