StatusResponse

case
class StatusResponse(status: String)

StatusResponse is sent as a reply to a StatusRequest. The Status should contain a json encoded structure with version information, a player sample, a description/MOTD and optionally a favicon.

The structure is as follows

{
   "version": {
       "name": "1.8.3",
       "protocol": 47,
   },
   "players": {
       "max": 20,
       "online": 1,
       "sample": [
         packet  {"name": "Thinkofdeath", "id": "4566e69f-c907-48ee-8d71-d7ba5aa00d20"}
       ]
   },
   "description": "Hello world",
   "favicon": "data:image/png;base64,<data>"
}
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product