53 lines
2.6 KiB
Go
53 lines
2.6 KiB
Go
|
package model
|
||
|
|
||
|
type AutoGenerated struct {
|
||
|
KinopoiskID int `json:"kinopoiskId"`
|
||
|
ImdbID interface{} `json:"imdbId"`
|
||
|
NameRu string `json:"nameRu"`
|
||
|
NameEn interface{} `json:"nameEn"`
|
||
|
NameOriginal string `json:"nameOriginal"`
|
||
|
PosterURL string `json:"posterUrl"`
|
||
|
PosterURLPreview string `json:"posterUrlPreview"`
|
||
|
CoverURL string `json:"coverUrl"`
|
||
|
LogoURL string `json:"logoUrl"`
|
||
|
ReviewsCount int `json:"reviewsCount"`
|
||
|
RatingGoodReview float64 `json:"ratingGoodReview"`
|
||
|
RatingGoodReviewVoteCount int `json:"ratingGoodReviewVoteCount"`
|
||
|
RatingKinopoisk float64 `json:"ratingKinopoisk"`
|
||
|
RatingKinopoiskVoteCount int `json:"ratingKinopoiskVoteCount"`
|
||
|
RatingImdb float64 `json:"ratingImdb"`
|
||
|
RatingImdbVoteCount int `json:"ratingImdbVoteCount"`
|
||
|
RatingFilmCritics float64 `json:"ratingFilmCritics"`
|
||
|
RatingFilmCriticsVoteCount int `json:"ratingFilmCriticsVoteCount"`
|
||
|
RatingAwait interface{} `json:"ratingAwait"`
|
||
|
RatingAwaitCount int `json:"ratingAwaitCount"`
|
||
|
RatingRfCritics interface{} `json:"ratingRfCritics"`
|
||
|
RatingRfCriticsVoteCount int `json:"ratingRfCriticsVoteCount"`
|
||
|
WebURL string `json:"webUrl"`
|
||
|
Year int `json:"year"`
|
||
|
FilmLength int `json:"filmLength"`
|
||
|
Slogan string `json:"slogan"`
|
||
|
Description string `json:"description"`
|
||
|
ShortDescription string `json:"shortDescription"`
|
||
|
EditorAnnotation interface{} `json:"editorAnnotation"`
|
||
|
IsTicketsAvailable bool `json:"isTicketsAvailable"`
|
||
|
ProductionStatus interface{} `json:"productionStatus"`
|
||
|
Type string `json:"type"`
|
||
|
RatingMpaa string `json:"ratingMpaa"`
|
||
|
RatingAgeLimits string `json:"ratingAgeLimits"`
|
||
|
Countries []struct {
|
||
|
Country string `json:"country"`
|
||
|
} `json:"countries"`
|
||
|
Genres []struct {
|
||
|
Genre string `json:"genre"`
|
||
|
} `json:"genres"`
|
||
|
StartYear interface{} `json:"startYear"`
|
||
|
EndYear interface{} `json:"endYear"`
|
||
|
Serial bool `json:"serial"`
|
||
|
ShortFilm bool `json:"shortFilm"`
|
||
|
Completed bool `json:"completed"`
|
||
|
HasImax bool `json:"hasImax"`
|
||
|
Has3D bool `json:"has3D"`
|
||
|
LastSync string `json:"lastSync"`
|
||
|
}
|