-
Notifications
You must be signed in to change notification settings - Fork 21
Poll Events
AnkhHeart edited this page Apr 11, 2018
·
1 revision
{
"event": "EVENT_POLL_START",
"data": {
"voting_on": "ABC",
"is_timed": false,
"timer": 60,
"options": [
{
"Key": "A",
"Value": 0
},
{
"Key": "B",
"Value": 0
}
],
"cost": "0",
"total_votes": 0,
"is_multi_vote": false,
"max_votes_per_user": 1,
"currency_name": "Clouds"
}
}
{
"event": "EVENT_POLL_END",
"data": {}
}
{
"event": "EVENT_POLL_VOTE",
"data": {
"userId": "ankhheart/15678985/UCM_g-vEyFpZu9D7BL4O32gw",
"name": "AnkhHeart",
"option": 0
}
}
{
"event": "EVENT_POLL_WIN",
"data": {
"option_id": 1,
"option": "Xenoverse 2",
"votes": 10
}
}
{
"event": "EVENT_POLL_TIE",
"data": {
"options": [
0,
1,
3,
7
],
"votes": 10
}
}