8 lines
267 B
Python
8 lines
267 B
Python
from marshmallow import Schema, fields
|
|
|
|
# Token Validation Schema
|
|
class TokenValidationSchema(Schema):
|
|
RequestId = fields.Str(required=True)
|
|
UserId = fields.Str(required=True)
|
|
CountryId = fields.Str(required=True)
|
|
TokenCode = fields.Str(required=True) |