cara mengatur DRF Serialzier yang diperlukan

class MySerializer(serializer.Modelserializer):
	class Meta:
    	model = MyModel
        fields = ['id', 'title']
        
	extra_kwargs = {
		"title": {"required": False}
	}
shoxruxmirzo