-
Notifications
You must be signed in to change notification settings - Fork 35
/
results.go
603 lines (569 loc) · 21.4 KB
/
results.go
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
package tmdb
// AccountCreatedListsResults Result Types
type AccountCreatedListsResults struct {
Results []struct {
Description string `json:"description"`
FavoriteCount int64 `json:"favorite_count"`
ID int64 `json:"id"`
ItemCount int64 `json:"item_count"`
Iso639_1 string `json:"iso_639_1"`
ListType string `json:"list_type"`
Name string `json:"name"`
PosterPath string `json:"poster_path"`
} `json:"results"`
}
// AccountFavoriteMoviesResults Result Types
type AccountFavoriteMoviesResults struct {
Results []struct {
Adult bool `json:"adult"`
BackdropPath string `json:"backdrop_path"`
GenreIDs []int `json:"genre_ids"`
ID int64 `json:"id"`
OriginalLanguage string `json:"original_language"`
OriginalTitle string `json:"original_title"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
PosterPath string `json:"poster_path"`
Popularity float64 `json:"popularity"`
Title string `json:"title"`
Video bool `json:"video"`
VoteAverage float64 `json:"vote_average"`
VoteCount int64 `json:"vote_count"`
} `json:"results"`
}
// AccountFavoriteTVShowsResults Result Types
type AccountFavoriteTVShowsResults struct {
Results []struct {
BackdropPath string `json:"backdrop_path"`
FirstAirDate string `json:"first_air_date"`
GenreIDs []int64 `json:"genre_ids"`
ID int64 `json:"id"`
OriginalLanguage string `json:"original_language"`
OriginalName string `json:"original_name"`
Overview string `json:"overview"`
OriginCountry []string `json:"origin_country"`
PosterPath string `json:"poster_path"`
Popularity float64 `json:"popularity"`
Name string `json:"name"`
VoteAverage float64 `json:"vote_average"`
VoteCount int64 `json:"vote_count"`
} `json:"results"`
}
// AccountRatedTVEpisodesResults Result Types
type AccountRatedTVEpisodesResults struct {
Results []struct {
AirDate string `json:"air_date"`
EpisodeNumber int `json:"episode_number"`
ID int64 `json:"id"`
Name string `json:"name"`
Overview string `json:"overview"`
ProductionCode string `json:"production_code"`
SeasonNumber int `json:"season_number"`
ShowID int64 `json:"show_id"`
StillPath string `json:"still_path"`
VoteAverage float64 `json:"vote_average"`
VoteCount int64 `json:"vote_count"`
Rating float32 `json:"rating"`
} `json:"results"`
}
// ChangesMovieResults Result Types
type ChangesMovieResults struct {
Results []struct {
ID int64 `json:"id"`
Adult bool `json:"adult"`
} `json:"results"`
}
// CompanyAlternativeNamesResult Result Types
type CompanyAlternativeNamesResult struct {
Results []struct {
Name string `json:"name"`
Type string `json:"type"`
} `json:"results"`
}
// DiscoverMovieResults Result Types
type DiscoverMovieResults struct {
Results []struct {
VoteCount int64 `json:"vote_count"`
ID int64 `json:"id"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
Title string `json:"title"`
Popularity float32 `json:"popularity"`
PosterPath string `json:"poster_path"`
OriginalLanguage string `json:"original_language"`
OriginalTitle string `json:"original_title"`
GenreIDs []int64 `json:"genre_ids"`
BackdropPath string `json:"backdrop_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
} `json:"results"`
}
// DiscoverTVResults Result Types
type DiscoverTVResults struct {
Results []struct {
OriginalName string `json:"original_name"`
GenreIDs []int64 `json:"genre_ids"`
Name string `json:"name"`
Popularity float32 `json:"popularity"`
OriginCountry []string `json:"origin_country"`
VoteCount int64 `json:"vote_count"`
FirstAirDate string `json:"first_air_date"`
BackdropPath string `json:"backdrop_path"`
OriginalLanguage string `json:"original_language"`
ID int64 `json:"id"`
VoteAverage float32 `json:"vote_average"`
Overview string `json:"overview"`
PosterPath string `json:"poster_path"`
} `json:"results"`
}
// SearchCompaniesResults Result Types
type SearchCompaniesResults struct {
Results []struct {
ID int64 `json:"id"`
LogoPath string `json:"logo_path"`
Name string `json:"name"`
OriginCountry string `json:"origin_country"`
} `json:"results"`
}
// SearchCollectionsResults Result Types
type SearchCollectionsResults struct {
Results []struct {
Adult bool `json:"adult"`
BackdropPath string `json:"backdrop_path"`
ID int64 `json:"id"`
Name string `json:"name"`
OriginalLanguage string `json:"original_language"`
OriginalName string `json:"original_name"`
Overview string `json:"overview"`
PosterPath string `json:"poster_path"`
} `json:"results"`
}
// SearchKeywordsResults Result Types
type SearchKeywordsResults struct {
Results []struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"results"`
}
// SearchMoviesResults Result Types
type SearchMoviesResults struct {
Results []struct {
VoteCount int64 `json:"vote_count"`
ID int64 `json:"id"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
Title string `json:"title"`
Popularity float32 `json:"popularity"`
PosterPath string `json:"poster_path"`
OriginalLanguage string `json:"original_language"`
OriginalTitle string `json:"original_title"`
GenreIDs []int64 `json:"genre_ids"`
BackdropPath string `json:"backdrop_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
} `json:"results"`
}
// SearchMultiResults Result Types
type SearchMultiResults struct {
Results []struct {
PosterPath string `json:"poster_path,omitempty"`
Popularity float32 `json:"popularity"`
ID int64 `json:"id"`
Overview string `json:"overview,omitempty"`
BackdropPath string `json:"backdrop_path,omitempty"`
VoteAverage float32 `json:"vote_average,omitempty"`
MediaType string `json:"media_type"`
FirstAirDate string `json:"first_air_date,omitempty"`
OriginCountry []string `json:"origin_country,omitempty"`
GenreIDs []int64 `json:"genre_ids,omitempty"`
OriginalLanguage string `json:"original_language,omitempty"`
VoteCount int64 `json:"vote_count,omitempty"`
Name string `json:"name,omitempty"`
OriginalName string `json:"original_name,omitempty"`
Adult bool `json:"adult,omitempty"`
ReleaseDate string `json:"release_date,omitempty"`
OriginalTitle string `json:"original_title,omitempty"`
Title string `json:"title,omitempty"`
Video bool `json:"video,omitempty"`
ProfilePath string `json:"profile_path,omitempty"`
KnownFor []struct {
PosterPath string `json:"poster_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
OriginalTitle string `json:"original_title"`
GenreIDs []int64 `json:"genre_ids"`
ID int64 `json:"id"`
MediaType string `json:"media_type"`
OriginalLanguage string `json:"original_language"`
Title string `json:"title"`
BackdropPath string `json:"backdrop_path"`
Popularity float32 `json:"popularity"`
VoteCount int64 `json:"vote_count"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
} `json:"known_for,omitempty"`
} `json:"results"`
}
// SearchPeopleResults Result Types
type SearchPeopleResults struct {
Results []struct {
Adult bool `json:"adult"`
Gender int `json:"gender,omitempty"`
ID int64 `json:"id"`
KnownFor []struct {
Adult bool `json:"adult,omitempty"` // Movie
BackdropPath string `json:"backdrop_path"`
FirstAirDate string `json:"first_air_date,omitempty"` // TV
GenreIDs []int64 `json:"genre_ids"`
ID int64 `json:"id"`
MediaType string `json:"media_type"`
Name string `json:"name,omitempty"` // TV
OriginalLanguage string `json:"original_language"`
OriginalName string `json:"original_name,omitempty"` // TV
OriginalTitle string `json:"original_title,omitempty"` // Movie
OriginCountry []string `json:"origin_country,omitempty"` // TV
Overview string `json:"overview"`
Popularity float32 `json:"popularity"`
PosterPath string `json:"poster_path"`
ReleaseDate string `json:"release_date,omitempty"` // Movie
Title string `json:"title,omitempty"` // Movie
Video bool `json:"video,omitempty"` // Movie
VoteAverage float32 `json:"vote_average"`
VoteCount int64 `json:"vote_count"`
} `json:"known_for"`
KnownForDepartment string `json:"known_for_department"`
Name string `json:"name"`
Popularity float32 `json:"popularity"`
ProfilePath string `json:"profile_path"`
} `json:"results"`
}
// SearchTVShowsResults Result Types
type SearchTVShowsResults struct {
Results []struct {
OriginalName string `json:"original_name"`
ID int64 `json:"id"`
Name string `json:"name"`
VoteCount int64 `json:"vote_count"`
VoteAverage float32 `json:"vote_average"`
PosterPath string `json:"poster_path"`
FirstAirDate string `json:"first_air_date"`
Popularity float32 `json:"popularity"`
GenreIDs []int64 `json:"genre_ids"`
OriginalLanguage string `json:"original_language"`
BackdropPath string `json:"backdrop_path"`
Overview string `json:"overview"`
OriginCountry []string `json:"origin_country"`
} `json:"results"`
}
// TrendingResults Result Types
type TrendingResults struct {
Results []struct {
Adult bool `json:"adult,omitempty"`
Gender int `json:"gender,omitempty"`
BackdropPath string `json:"backdrop_path,omitempty"`
GenreIDs []int64 `json:"genre_ids,omitempty"`
ID int64 `json:"id"`
OriginalLanguage string `json:"original_language"`
OriginalTitle string `json:"original_title,omitempty"`
Overview string `json:"overview,omitempty"`
PosterPath string `json:"poster_path,omitempty"`
ReleaseDate string `json:"release_date,omitempty"`
Title string `json:"title,omitempty"`
Video bool `json:"video,omitempty"`
VoteAverage float32 `json:"vote_average,omitempty"`
VoteCount int64 `json:"vote_count,omitempty"`
Popularity float32 `json:"popularity,omitempty"`
FirstAirDate string `json:"first_air_date,omitempty"`
Name string `json:"name,omitempty"`
OriginCountry []string `json:"origin_country,omitempty"`
OriginalName string `json:"original_name,omitempty"`
KnownForDepartment string `json:"known_for_department,omitempty"`
ProfilePath string `json:"profile_path,omitempty"`
KnownFor []struct {
Adult bool `json:"adult"`
BackdropPath string `json:"backdrop_path"`
GenreIds []int `json:"genre_ids"`
ID int `json:"id"`
OriginalLanguage string `json:"original_language"`
OriginalTitle string `json:"original_title"`
Overview string `json:"overview"`
PosterPath string `json:"poster_path"`
ReleaseDate string `json:"release_date"`
Title string `json:"title"`
Video bool `json:"video"`
VoteAverage float64 `json:"vote_average"`
VoteCount int `json:"vote_count"`
Popularity float64 `json:"popularity"`
MediaType string `json:"media_type"`
} `json:"known_for,omitempty"`
} `json:"results"`
}
// MovieReleaseDatesResults Result Types
type MovieReleaseDatesResults struct {
Results []struct {
Iso3166_1 string `json:"iso_3166_1"`
ReleaseDates []struct {
Certification string `json:"certification"`
Iso639_1 string `json:"iso_639_1"`
ReleaseDate string `json:"release_date"`
Type int `json:"type"`
Note string `json:"note"`
} `json:"release_dates"`
} `json:"results"`
}
// MovieVideosResults Result Types
type MovieVideosResults struct {
Results []struct {
ID string `json:"id"`
Iso639_1 string `json:"iso_639_1"`
Iso3166_1 string `json:"iso_3166_1"`
Key string `json:"key"`
Name string `json:"name"`
Official bool `json:"official"`
PublishedAt string `json:"published_at"`
Site string `json:"site"`
Size int `json:"size"`
Type string `json:"type"`
} `json:"results"`
}
// MovieWatchProvidersResults Result Types
type MovieWatchProvidersResults struct {
Results map[string]struct {
Link string `json:"link"`
Flatrate []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"flatrate,omitempty"`
Rent []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"rent,omitempty"`
Buy []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"buy,omitempty"`
} `json:"results"`
}
// MovieRecommendationsResults Result Types
type MovieRecommendationsResults struct {
Results []struct {
PosterPath string `json:"poster_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
GenreIDs []int64 `json:"genre_ids"`
ID int64 `json:"id"`
OriginalTitle string `json:"original_title"`
OriginalLanguage string `json:"original_language"`
Title string `json:"title"`
BackdropPath string `json:"backdrop_path"`
Popularity float32 `json:"popularity"`
VoteCount int64 `json:"vote_count"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
} `json:"results"`
}
// MovieReviewsResults Result Types
type MovieReviewsResults struct {
Results []struct {
ID string `json:"id"`
Author string `json:"author"`
Content string `json:"content"`
URL string `json:"url"`
} `json:"results"`
}
// MovieListsResults Result Types
type MovieListsResults struct {
Results []struct {
Description string `json:"description"`
FavoriteCount int64 `json:"favorite_count"`
ID int64 `json:"id"`
ItemCount int64 `json:"item_count"`
Iso639_1 string `json:"iso_639_1"`
ListType string `json:"list_type"`
Name string `json:"name"`
PosterPath string `json:"poster_path"`
} `json:"results"`
}
// MovieNowPlayingResults Result Types
type MovieNowPlayingResults struct {
Results []struct {
PosterPath string `json:"poster_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
Genres []struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"genres"`
ID int64 `json:"id"`
OriginalTitle string `json:"original_title"`
OriginalLanguage string `json:"original_language"`
Title string `json:"title"`
BackdropPath string `json:"backdrop_path"`
Popularity float32 `json:"popularity"`
VoteCount int64 `json:"vote_count"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
} `json:"results"`
}
// MoviePopularResults Result Types
type MoviePopularResults struct {
Results []struct {
PosterPath string `json:"poster_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
Genres []struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"genres"`
ID int64 `json:"id"`
OriginalTitle string `json:"original_title"`
OriginalLanguage string `json:"original_language"`
Title string `json:"title"`
BackdropPath string `json:"backdrop_path"`
Popularity float32 `json:"popularity"`
VoteCount int64 `json:"vote_count"`
Video bool `json:"video"`
VoteAverage float32 `json:"vote_average"`
} `json:"results"`
}
// TVAlternativeTitlesResults Result Types
type TVAlternativeTitlesResults struct {
Results []struct {
Iso3166_1 string `json:"iso_3166_1"`
Title string `json:"title"`
Type string `json:"type"`
} `json:"results"`
}
// TVContentRatingsResults Result Types
type TVContentRatingsResults struct {
Results []struct {
Iso3166_1 string `json:"iso_3166_1"`
Rating string `json:"rating"`
} `json:"results"`
}
// TVEpisodeGroupsResults Result Types
type TVEpisodeGroupsResults struct {
Results []struct {
Description string `json:"description"`
EpisodeCount int `json:"episode_count"`
GroupCount int `json:"group_count"`
ID string `json:"id"`
Name string `json:"name"`
Network struct {
ID int64 `json:"id"`
LogoPath string `json:"logo_path"`
Name string `json:"name"`
OriginCountry string `json:"origin_country"`
} `json:"network"`
Type int `json:"type"`
} `json:"results"`
}
// TVKeywordsResults Result Types
type TVKeywordsResults struct {
Results []struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"results"`
}
// TVRecommendationsResults Result Types
type TVRecommendationsResults struct {
Results []struct {
PosterPath string `json:"poster_path"`
Popularity float32 `json:"popularity"`
ID int64 `json:"id"`
BackdropPath string `json:"backdrop_path"`
VoteAverage float32 `json:"vote_average"`
Overview string `json:"overview"`
FirstAirDate string `json:"first_air_date"`
OriginCountry []string `json:"origin_country"`
GenreIDs []int64 `json:"genre_ids"`
OriginalLanguage string `json:"original_language"`
VoteCount int64 `json:"vote_count"`
Name string `json:"name"`
OriginalName string `json:"original_name"`
} `json:"results"`
}
// TVReviewsResults Result Types
type TVReviewsResults struct {
Results []struct {
ID string `json:"id"`
Author string `json:"author"`
Content string `json:"content"`
URL string `json:"url"`
} `json:"results"`
}
// TVScreenedTheatricallyResults Result Types
type TVScreenedTheatricallyResults struct {
Results []struct {
ID int64 `json:"id"`
EpisodeNumber int `json:"episode_number"`
SeasonNumber int `json:"season_number"`
} `json:"results"`
}
// TVWatchProvidersResults Result Types
type TVWatchProvidersResults struct {
Results map[string]struct {
Link string `json:"link"`
Flatrate []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"flatrate,omitempty"`
Rent []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"rent,omitempty"`
Buy []struct {
DisplayPriority int64 `json:"display_priority"`
LogoPath string `json:"logo_path"`
ProviderID int64 `json:"provider_id"`
ProviderName string `json:"provider_name"`
} `json:"buy,omitempty"`
} `json:"results"`
}
// TVVideosResults Result Types
type TVVideosResults struct {
Results []struct {
ID string `json:"id"`
Iso639_1 string `json:"iso_639_1"`
Iso3166_1 string `json:"iso_3166_1"`
Key string `json:"key"`
Name string `json:"name"`
Site string `json:"site"`
Size int `json:"size"`
Type string `json:"type"`
} `json:"results"`
}
// TVAiringTodayResults Result Types
type TVAiringTodayResults struct {
Results []struct {
OriginalName string `json:"original_name"`
GenreIDs []int64 `json:"genre_ids"`
Name string `json:"name"`
Popularity float32 `json:"popularity"`
OriginCountry []string `json:"origin_country"`
VoteCount int64 `json:"vote_count"`
FirstAirDate string `json:"first_air_date"`
BackdropPath string `json:"backdrop_path"`
OriginalLanguage string `json:"original_language"`
ID int64 `json:"id"`
VoteAverage float32 `json:"vote_average"`
Overview string `json:"overview"`
PosterPath string `json:"poster_path"`
} `json:"results"`
}