(self, unencrypted_value: str)
| 117 | return self._url.value |
| 118 | |
| 119 | def encrypt(self, unencrypted_value: str) -> str: |
| 120 | return encrypt(self.key, unencrypted_value) |
| 121 | |
| 122 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 123 | if "created_at" in attributes: # pragma no branch |
no test coverage detected