(self, instance, validated_data)
| 169 | raise NotImplementedError('`to_representation()` must be implemented.') |
| 170 | |
| 171 | def update(self, instance, validated_data): |
| 172 | raise NotImplementedError('`update()` must be implemented.') |
| 173 | |
| 174 | def create(self, validated_data): |
| 175 | raise NotImplementedError('`create()` must be implemented.') |
no outgoing calls