(self)
| 800 | return self.__document |
| 801 | |
| 802 | def __repr__(self) -> str: |
| 803 | return "{}({}{})".format( |
| 804 | self.__class__.__name__, |
| 805 | self.document["key"], |
| 806 | "".join([f", {key}={value!r}" for key, value in self.document.items() if key != "key"]), |
| 807 | ) |
| 808 | |
| 809 | |
| 810 | class SearchIndexModel: |