The class Meta paradigm allows you to specify which attributes you
want to serialize. Marshmallow will choose an appropriate field type
based on the attribute’s type.
class MySchema(Schema):
class Meta:
fields = ('field_1', 'field_2', ..., 'field_42')
...