Optional[Any]: The content of the document, if it exists.
(self)
| 62 | |
| 63 | @property |
| 64 | def value(self) -> Optional[Any]: |
| 65 | """ |
| 66 | Optional[Any]: The content of the document, if it exists. |
| 67 | """ |
| 68 | if self._decoded_value is not None: |
| 69 | return self._decoded_value |
| 70 | self._decode_value() |
| 71 | return self._decoded_value |
| 72 | |
| 73 | @property |
| 74 | def cas(self) -> Optional[int]: |
no test coverage detected