class documentation

class DeserializedObject: (source)

View In Hierarchy

A deserialized model. Basically a container for holding the pre-saved deserialized data along with the many-to-many data saved with the object. Call ``save()`` to save the object (with the many-to-many data) to the database; call ``save(save_m2m=False)`` to save just the object fields (and not touch the many-to-many stuff.)

Method __init__ Undocumented
Method __repr__ Undocumented
Method save Undocumented
Method save_deferred_fields Undocumented
Instance Variable deferred_fields Undocumented
Instance Variable m2m_data Undocumented
Instance Variable object Undocumented
def __init__(self, obj, m2m_data=None, deferred_fields=None): (source)

Undocumented

def __repr__(self): (source)

Undocumented

def save(self, save_m2m=True, using=None, **kwargs): (source)

Undocumented

def save_deferred_fields(self, using=None): (source)

Undocumented

deferred_fields = (source)

Undocumented

m2m_data: dict = (source)

Undocumented

Undocumented