[add]: Balance Check

This commit is contained in:
VivianDee
2026-03-11 11:06:26 +01:00
parent 422d60addd
commit c92255c0c5
3 changed files with 79 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from marshmallow import Schema, fields
from marshmallow import Schema, fields
from datetime import date
class VerifyAccountBalanceSchema(Schema):
accountId = fields.Str(required=True)
amount = fields.Str(required=True)
requestId = fields.Str(required=True)