Get the build id string of the server :return: Build id of the server
()
| 220 | |
| 221 | |
| 222 | def server_build_id() -> str: |
| 223 | """ |
| 224 | Get the build id string of the server |
| 225 | |
| 226 | :return: Build id of the server |
| 227 | """ |
| 228 | if not is_connected(): |
| 229 | connect() |
| 230 | value = core.BNGetEnterpriseServerBuildId() |
| 231 | if value is None: |
| 232 | raise RuntimeError(last_error()) |
| 233 | return value |
| 234 | |
| 235 | |
| 236 | def reservation_time_limit() -> int: |
nothing calls this directly
no test coverage detected