forked from DigiFi/digifi-BankToProductCore
8 lines
263 B
Python
8 lines
263 B
Python
from marshmallow import Schema, fields
|
|
|
|
# Lien Check Schema
|
|
class LienCheckSchema(Schema):
|
|
transactionId = fields.Str(required=True)
|
|
customerId = fields.Str(required=True)
|
|
accountId = fields.Str(required=True)
|
|
countryId = fields.Str(required=True) |