CICD/app/other_api/whatsit/schema.py
2019-05-18 13:47:47 -04:00

10 lines
242 B
Python

from marshmallow import fields, Schema
class WhatsitSchema(Schema):
'''Whatsit schema'''
whatsitId = fields.Number(attribute='whatsit_id')
name = fields.String(attribute='name')
purpose = fields.String(attribute='purpose')