Return the collection name for this class. None for abstract class.
(cls)
| 770 | |
| 771 | @classmethod |
| 772 | def _get_collection_name(cls): |
| 773 | """Return the collection name for this class. None for abstract |
| 774 | class. |
| 775 | """ |
| 776 | return cls._meta.get("collection", None) |
| 777 | |
| 778 | @classmethod |
| 779 | def _from_son(cls, son, _auto_dereference=True, created=False): |