The string value of the data element.
(self)
| 142 | |
| 143 | @property |
| 144 | def text(self) -> Optional[str]: |
| 145 | """The string value of the data element.""" |
| 146 | return raw_encode_value(self.value) |
| 147 | |
| 148 | def get(self, key: str, default: Any = None) -> Any: |
| 149 | """Gets a data element attribute.""" |
nothing calls this directly
no test coverage detected