class documentation

class DeserializedObject:

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):

Undocumented

def __repr__(self):

Undocumented

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

Undocumented

def save_deferred_fields(self, using=None):

Undocumented

deferred_fields =

Undocumented

m2m_data: dict =

Undocumented

object =

Undocumented