Unique id. If metadata has not been pulled, it will be pulled upon calling this. :return: Id string :raises RuntimeError: If there was an error pulling metadata.
(self)
| 79 | |
| 80 | @property |
| 81 | def unique_id(self) -> str: |
| 82 | """ |
| 83 | Unique id. If metadata has not been pulled, it will be pulled upon calling this. |
| 84 | |
| 85 | :return: Id string |
| 86 | :raises RuntimeError: If there was an error pulling metadata. |
| 87 | """ |
| 88 | if not self.has_loaded_metadata: |
| 89 | self.load_metadata() |
| 90 | return core.BNRemoteGetUniqueId(self._handle) |
| 91 | |
| 92 | @property |
| 93 | def name(self) -> str: |
nothing calls this directly
no test coverage detected