This commit is contained in:
CHIEFSOFT\ameye
2025-07-04 10:29:32 -04:00
parent 7778b3ce20
commit 19afb52c53
2 changed files with 29 additions and 38 deletions
+7
View File
@@ -0,0 +1,7 @@
from marshmallow import Schema, fields
class MyProductSchema(Schema):
token = fields.Str(required=True)
uid = fields.Str(required=True)
product_id = fields.Str(required=True)