first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-03-23 14:25:20 -04:00
commit 0bb36be246
62 changed files with 1968 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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)