| 399 | |
| 400 | |
| 401 | class PokemonTypePastSerializer(serializers.ModelSerializer): |
| 402 | generation = GenerationSummarySerializer() |
| 403 | type = TypeSummarySerializer() |
| 404 | |
| 405 | class Meta: |
| 406 | model = PokemonTypePast |
| 407 | fields = ("pokemon", "generation", "slot", "type") |
| 408 | |
| 409 | |
| 410 | class PokedexVersionGroupSerializer(serializers.ModelSerializer): |
no test coverage detected