(self)
| 61 | |
| 62 | @property |
| 63 | def _identity(self) -> dict[str, str]: |
| 64 | identity: dict[str, Any] = { |
| 65 | "name": self.__name, |
| 66 | "email": self.__email, |
| 67 | } |
| 68 | if is_defined(self.__date): |
| 69 | identity["date"] = self.__date |
| 70 | return identity |
nothing calls this directly
no test coverage detected