synthea_webservice/webservice/apps/synthea/api/serializers.py

8 lines
242 B
Python
Raw Normal View History

2020-11-16 16:30:41 +01:00
from rest_framework import serializers
from apps.synthea.models import Synthea
class SyntheaSerializer(serializers.ModelSerializer):
class Meta:
model = Synthea
fields = ['state', 'population', 'gender', 'age', 'module']