Class Serializer
public
Extends:
Ember.EmberObject
Defined in:
../serializer/src/index.ts:117
Module:
@ember-data/serializer
⚠️ CAUTION you likely want the docs for
Serializer as extending this abstract class is unnecessary.
Serializer
is an abstract base class that you may override in your
application to customize it for your backend. The minimum set of methods
that you should implement is:
normalizeResponse()
serialize()
And you can optionally override the following methods:
normalize()
For an example implementation, see JSONSerializer, the included JSON serializer.