MovieSearchResultItem
public struct MovieSearchResultItem : Codable
Represents an individual movie listing from themoviedb.org
-
The original title
Declaration
Swift
public let originalTitle: String -
The description
Declaration
Swift
public let overview: String -
The release year
Declaration
Swift
public let releaseDate: String? -
The path where the poster image can be found
Declaration
Swift
public let posterPath: String? -
The unique ID for the movie
Declaration
Swift
public let id: Int -
The popularity of a movie
Declaration
Swift
let popularity: Double -
The number of votes for a movie
Declaration
Swift
let voteCount: Int -
??
Declaration
Swift
let video: Bool -
Path to a backdrop image
Declaration
Swift
let backdropPath: String? -
The original language of a movie
Declaration
Swift
let originalLanguage: String -
The IDs for the genres of a movie
Declaration
Swift
let genreIDS: [Int] -
The title of a movie
Declaration
Swift
let title: String -
The average rating
Declaration
Swift
let voteAverage: Double
View on GitHub
MovieSearchResultItem Structure Reference