<tournament_rebuy_obj>
An object defining tournament re-buys or re-entries, and add-ons.
tournament_rebuy
An object defining the number of re-buys or re-entries, and add-ons, made by one player in the tournament.
There should be one of this object for each player who made any rebuys, re-entries or add-ons in the tournament.
Type: object
Structure:
{
    "player_name": string,
    "rebuys": integer,
    "addons": integer
}
Example:
Player made 2 rebuys and 1 add-on.
{
    "player_name": "bot_name",
    "rebuys": 2,
    "addons": 1
}
Last updated
Was this helpful?