ServerStateData
Provides information about an actual server state.
Properties
Name | string | Name of the server. |
---|---|---|
StateCode | int | Current server state:
|
State | string | String representation of the current server state. |
ServiceVersion | string | Deprecated.
|
ProtocolVersion | string | Service communication protocol version in format: “<major>.<minor>.<build>”. For example: “1.0.1” The build number can change without the interface changing (adding optional parameters, adding new methods). Change in the major or the minor version means the interface change and the client who doesn’t support new version of interface shouldn’t continue working and needs to be upgraded. |
JSON Example
{
"Name": "Meddbase server",
"StateCode": 1,
"State": "Running",
"ServiceVersion": "<deprecated>",
"ProtocolVersion": "1.0.1"
}