-
Notifications
You must be signed in to change notification settings - Fork 1
/
game-endpoint-response.interface.ts
233 lines (182 loc) · 3.37 KB
/
game-endpoint-response.interface.ts
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import { ReleaseDateEndpointResponse } from "./";
import { AlternativeName, Image, Video, ESRB, PEGI, Website } from "../miscellaneous";
export interface GameEndpointResponse {
/**
* If count parameter is set in the options array, the value from IGDB will be stored here.
*/
count?: number
id: string;
name: string;
slug: string;
url: string;
/**
* Unix epoch (milliseconds)
*/
created_at: number;
/**
* Unix epoch (milliseconds)
*/
updated_at: number;
summary?: string;
storyline?: string;
/**
* ID of a Collection record
*/
collection: number;
/**
* ID of a Franchise record
*/
franchise?: number;
/**
* Number of follows a game gets before release
*/
hypes?: number;
/**
* A number based on traffic to that game page
*/
popularity?: number;
/**
* Average user rating
*/
rating?: number;
/**
* Number of user ratings
*/
rating_count?: number;
/**
* Rating based on external critic scores
*/
aggregated_rating?: number;
/**
* Number of external critic scores
*/
aggregated_rating_count?: number;
/**
* Average rating based on both IGDB user and external critic scores
*/
total_rating?: number;
/**
* Total number of user and external critic scores
*/
total_rating_count?: number;
/**
* ID of a Game this game is a DLC/expansion of (expandable)
*/
game?: number;
/**
* ID of a Game this game is an edition of
*/
version_parent?: number;
/**
* IDs of Company records (expandable)
*/
developers?: number[];
/**
* IDs of Company records (expandable)
*/
publishers?: number[];
/**
* IDs of Game engine records
*/
game_engines?: number[];
/**
* See the Game category value reference
*/
category?: number;
/**
* See the Time to beat object reference
*/
time_to_beat?: object;
/**
* IDs of Player perspective records
*/
player_perspectives?: number[];
/**
* IDs of Game mode records
*/
game_modes?: number[];
/**
* IDs of Keyword records
*/
keywords?: number[];
/**
* IDs of Theme records
*/
themes?: number[];
/**
* IDs of Genre records
*/
genres?: number[];
/**
* IDs of Platform records
*/
platforms?: number[];
/**
* Unix epoch (milliseconds)
*/
first_release_date?: number;
/**
* See the Game status value reference
*/
status?: number;
/**
* See the Release date object reference
*/
release_dates?: ReleaseDateEndpointResponse[];
/**
* See the Alternative name object reference
*/
alternative_names?: AlternativeName[];
/**
* See the Image object reference
*/
screenshots?: Image[];
/**
* See the Video object reference
*/
videos?: Video[];
/**
* See the Image object reference
*/
cover?: Image;
/**
* See the ESRB object reference
*/
esrb?: ESRB;
/**
* See the PEGI object reference
*/
pegi?: PEGI;
/**
* See the Website object reference
*/
websites?: Website[];
/**
* IDs of Game records (expandable)
*/
dlcs?: number[];
/**
* IDs of Game records (expandable)
*/
expansions?: number[];
/**
* IDs of Game records (expandable)
*/
standalone_expansions?: number[];
/**
* IDs of Game records (expandable)
*/
bundles?: number[];
/**
* IDs of Game records that are similar to this game. (expandable)
*/
games?: number[];
/**
* See the External object reference
*/
external?: External;
/**
* See the Image object reference
*/
artworks?: Image;
}