
org.schema.GameServer Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/GameServer
* Server that provides game interaction in a multiplayer game.
*
* @author schema.org
* @class GameServer
* @module org.schema
* @extends Intangible
*/
public class GameServer extends Intangible {
/**
* Schema.org/game
* Video game which is played on this server.
*
* @property game
* @type VideoGame
*/
public VideoGame game;
/**
* Schema.org/playersOnline
* Number of players on the server.
*
* @property playersOnline
* @type Integer
*/
public Integer playersOnline;
/**
* Schema.org/serverStatus
* Status of a game server.
*
* @property serverStatus
* @type GameServerStatus
*/
public GameServerStatus serverStatus;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public GameServer() {
context = "http://schema.org/";
type = "GameServer";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy