class documentation

class SerializerMetaclass(type): (source)

View In Hierarchy

This metaclass sets a dictionary named `_declared_fields` on the class. Any instances of `Field` included as attributes on either the class or on any of its superclasses will be include in the `_declared_fields` dictionary.

Method __new__ Undocumented
Class Method _get_declared_fields Undocumented
def __new__(cls, name, bases, attrs): (source)

Undocumented

@classmethod
def _get_declared_fields(cls, bases, attrs): (source)

Undocumented