<tournament_finish_obj>

Object containing a tournament player's place of finish and winnings.

tournament_finish_obj

Object containing a tournament player's place of finish and winnings.

Type: object

Example:

Player finished third, and won 10.00:

"tournament_finish": {
	"player_name": "My Player 1",
	"finish_position": 3,
	"still_playing": false,
	"prize": 10.00,
	"ticket_value": 0.00
}

Player has not yet been eliminated from the tournament:

"tournament_finish": {
	"player_name": "My Player 2",
	"still_playing": true,
}

Last updated