CICD/app/widget/schema.py
2019-08-03 12:55:38 -04:00

10 lines
238 B
Python

from marshmallow import fields, Schema
class WidgetSchema(Schema):
"""Widget schema"""
widgetId = fields.Number(attribute="widget_id")
name = fields.String(attribute="name")
purpose = fields.String(attribute="purpose")