Let's say we have a model called product.
class Product(models.Model):
name = models.CharField(max_length=100)
price = models.IntegerField()
Now we are going to declare a model serializers for this model.
from rest_framework.serializers import ModelSerializer
class ProductSerialize...