blob: 7a09b443ed6b0a284eb068ba3363edafaec95470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/* tslint:disable */
/* eslint-disable */
/**
* General Research Full Service Brokerage API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
* A leaderboard exists independently for each product_id in each country. Each country is associated with a single timezone. There is a daily, weekly, and monthly leaderboard.
*
* @export
* @interface Leaderboard
*/
export interface Leaderboard {
/**
* Unique ID for this leaderboard
*
* @type {any}
* @memberof Leaderboard
*/
id: any;
/**
* Descriptive name for the leaderboard based on the board_code
*
* @type {any}
* @memberof Leaderboard
*/
name: any;
/**
* The type of leaderboard. What the \"values\" represent. Allowed values: - __complete_count__ *(COMPLETE_COUNT)*: Number of Completes - __largest_user_payout__ *(LARGEST_PAYOUT)*: Largest Single Payout - __sum_user_payout__ *(SUM_PAYOUTS)*: (Sum of) Total Payouts
*
* @type {any}
* @memberof Leaderboard
*/
boardCode: any;
/**
* product_id
*
* @type {any}
* @memberof Leaderboard
*/
bpid: any;
/**
* The country this leaderboard is for.
*
* @type {any}
* @memberof Leaderboard
*/
countryIso: any;
/**
* The time period range for the leaderboard. Allowed values: - __daily__ *(DAILY)*: UTC midnight to UTC midnight - __weekly__ *(WEEKLY)*: Sunday Midnight to Sunday Midnight UTC - __monthly__ *(MONTHLY)*: Jan 1 00:00:00
*
* @type {any}
* @memberof Leaderboard
*/
freq: any;
/**
* (unix timestamp) The time it is right now
*
* @type {any}
* @memberof Leaderboard
*/
nowTimestamp: any;
/**
* The time it is right now (local time, in the leaderboard's timezone).
*
* @type {any}
* @memberof Leaderboard
*/
localTime: any;
/**
* (unix timestamp) The timestamp of the leaderboard. This is the UTC timestamp of the start of the leaderboard.
*
* @type {any}
* @memberof Leaderboard
*/
timestamp: any;
/**
* (unix timestamp) The start time of the time range this leaderboard covers.
*
* @type {any}
* @memberof Leaderboard
*/
startTimestamp: any;
/**
* (unix timestamp) The end time of the time range this leaderboard covers.
*
* @type {any}
* @memberof Leaderboard
*/
endTimestamp: any;
/**
* The start time of the time range this leaderboard covers (local time, in the leaderboard's timezone).
*
* @type {any}
* @memberof Leaderboard
*/
localStartTime: any;
/**
* The end time of the time range this leaderboard covers (local time, in the leaderboard's timezone).
*
* @type {any}
* @memberof Leaderboard
*/
localEndTime: any;
/**
* A formatted string for time range covered by this leaderboard. Can be used to display to users.
*
* @type {any}
* @memberof Leaderboard
*/
startEndStr: any;
/**
* The timezone for the requested country
*
* @type {any}
* @memberof Leaderboard
*/
timezoneName: any;
/**
* The UTC offset for the timezone
*
* @type {any}
* @memberof Leaderboard
*/
utcOffset: any;
/**
* @type {any}
* @memberof Leaderboard
*/
sortOrder?: any;
/**
* The total number of rows in the leaderboard.
*
* @type {any}
* @memberof Leaderboard
*/
rowCount: any;
/**
* @type {any}
* @memberof Leaderboard
*/
rows?: any;
}
|