File tree Expand file tree Collapse file tree 1 file changed +21
-13
lines changed Expand file tree Collapse file tree 1 file changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -7,17 +7,25 @@ Returns list of boosters.
7
7
## Parameters
8
8
- key
9
9
10
- ## Example Booster
10
+ ## Example Response
11
11
``` php
12
- [
13
- {
14
- "purchaserUuid": "",
15
- "amount": 3, // multiplier
16
- "originalLength": 3600,
17
- "length": 2329, // length remaining
18
- "gameType": 20, // GameType ID
19
- "dateActivated": 1471657389139 // unix timestamp
20
- },
21
- ...
22
- ]
23
- ```
12
+ {
13
+ "success": true,
14
+ "boosters": [
15
+ {
16
+ "purchaserUuid": "",
17
+ "amount": 3, // multiplier
18
+ "originalLength": 3600,
19
+ "length": 2329, // length remaining
20
+ "gameType": 20, // GameType ID
21
+ "dateActivated": 1471657389139 // unix timestamp
22
+ "stacked": [
23
+ "" // array of up to 10 UUIDs who have stacked the booster, or "true" if there are none
24
+ ]
25
+ }
26
+ ]
27
+ "boosterState": {
28
+ "decrementing": true // indicates whether booster duration is ticking down
29
+ }
30
+ }
31
+ ```
You can’t perform that action at this time.
0 commit comments