Unity · Schema

UpdateLobbyRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
name string
maxPlayers integer
isPrivate boolean
isLocked boolean
data object
hostId string Transfer host to this player ID
View JSON Schema on GitHub

JSON Schema

unity-updatelobbyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateLobbyRequest",
  "title": "UpdateLobbyRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "maxPlayers": {
      "type": "integer"
    },
    "isPrivate": {
      "type": "boolean"
    },
    "isLocked": {
      "type": "boolean"
    },
    "data": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/DataObject"
      }
    },
    "hostId": {
      "type": "string",
      "description": "Transfer host to this player ID"
    }
  }
}