11 lines
272 B
Python
11 lines
272 B
Python
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)
|