Once the DCV rceives the game information, it request the information about the seats on the table. DCV sents the below JSON message to the backend to get the seat information
{"method":"seats"}
The response from backend is shown below
{
"method": "seats",
"seats": [{
"name": "player1",
"seat": 0,
"stack": 0,
"empty": 0,
"playing": 1
}, {
"name": "player2",
"seat": 1,
"stack": 0,
"empty": 0,
"playing": 1
}]
}
The significance of each field is mentioned as follows:
pangea-poker-frontend has
max table size of 9.In the GUI you can see the two seats which appear after the receiving of the seats information by DCV as shown below 