@@ -22,15 +22,15 @@ type MovieDetails struct {
22
22
ID int64 `json:"id"`
23
23
Name string `json:"name"`
24
24
} `json:"genres"`
25
- Homepage string `json:"homepage"`
26
- ID int64 `json:"id"`
27
- IMDbID string `json:"imdb_id"`
28
- OriginalLanguage string `json:"original_language"`
29
- OriginalTitle string `json:"original_title"`
30
- Overview string `json:"overview"`
31
- Popularity float32 `json:"popularity"`
32
- PosterPath string `json:"poster_path"`
33
- OriginCountry []string `json:"origin_country"`
25
+ Homepage string `json:"homepage"`
26
+ ID int64 `json:"id"`
27
+ IMDbID string `json:"imdb_id"`
28
+ OriginalLanguage string `json:"original_language"`
29
+ OriginalTitle string `json:"original_title"`
30
+ Overview string `json:"overview"`
31
+ Popularity float32 `json:"popularity"`
32
+ PosterPath string `json:"poster_path"`
33
+ OriginCountry []string `json:"origin_country"`
34
34
ProductionCompanies []struct {
35
35
Name string `json:"name"`
36
36
ID int64 `json:"id"`
@@ -154,7 +154,6 @@ type MovieWatchProvidersAppend struct {
154
154
// GetMovieDetails get the primary information about a movie.
155
155
//
156
156
// https://developers.themoviedb.org/3/movies
157
- //
158
157
func (c * Client ) GetMovieDetails (
159
158
id int ,
160
159
urlOptions map [string ]string ,
@@ -192,7 +191,6 @@ type MovieAccountStates struct {
192
191
// If it belongs to your favourite list.
193
192
//
194
193
// https://developers.themoviedb.org/3/movies/get-movie-account-states
195
- //
196
194
func (c * Client ) GetMovieAccountStates (
197
195
id int ,
198
196
urlOptions map [string ]string ,
@@ -348,6 +346,7 @@ type MovieExternalIDs struct {
348
346
FacebookID string `json:"facebook_id"`
349
347
InstagramID string `json:"instagram_id"`
350
348
TwitterID string `json:"twitter_id"`
349
+ WikiData string `json:"wikidata_id,omitempty"`
351
350
ID int64 `json:"id,omitempty"`
352
351
}
353
352
@@ -393,7 +392,7 @@ type MovieImage struct {
393
392
394
393
// MovieImages type is a struct for images JSON response.
395
394
type MovieImages struct {
396
- ID int64 `json:"id,omitempty"`
395
+ ID int64 `json:"id,omitempty"`
397
396
Backdrops []MovieImage `json:"backdrops"`
398
397
Logos []MovieImage `json:"logos"`
399
398
Posters []MovieImage `json:"posters"`
0 commit comments