# \<tournament\_finish\_obj>

#### tournament\_finish\_obj

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

**Type:** object

**Example:**

Player finished third, and won 10.00:

```javascript
"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:

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