(self, attributes: dict[str, Any])
| 90 | return self._verified_at.value |
| 91 | |
| 92 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 93 | if "payload" in attributes: # pragma no branch |
| 94 | self._payload = self._makeStringAttribute(attributes["payload"]) |
| 95 | if "reason" in attributes: # pragma no branch |
| 96 | self._reason = self._makeStringAttribute(attributes["reason"]) |
| 97 | if "signature" in attributes: # pragma no branch |
| 98 | self._signature = self._makeStringAttribute(attributes["signature"]) |
| 99 | if "verified" in attributes: # pragma no branch |
| 100 | self._verified = self._makeBoolAttribute(attributes["verified"]) |
| 101 | if "verified_at" in attributes: # pragma no branch |
| 102 | self._verified_at = self._makeDatetimeAttribute(attributes["verified_at"]) |
nothing calls this directly
no test coverage detected