themoviedb-1.1.1.0: Haskell API bindings for http://themoviedb.org

Safe HaskellNone
LanguageHaskell2010

Network.API.TheMovieDB.Types.TV

Synopsis

Documentation

data TV Source

Metadata for a TV series.

Constructors

TV 

Fields

tvID :: ItemID

TheMovieDB unique ID.

tvName :: Text

The name of the TV series.

tvOverview :: Text

Short description of the TV series.

tvGenres :: [Genre]

List of Genres.

tvPopularity :: Double

Popularity ranking.

tvPosterPath :: Text

Incomplete URL for poster image. See tvPosterURLs.

tvFirstAirDate :: Maybe Day

Air date for first episode.

tvLastAirDate :: Maybe Day

Air date for last episode.

tvNumberOfSeasons :: Int

Number of seasons for the TV series.

tvNumberOfEpisodes :: Int

Total number of episodes for all seasons.

tvSeasons :: [Season]

Information about each season.

The number of elements in this list may not match tvNumberOfSeasons. Information about special episodes and unreleased episodes are usually kept in a Season listed as season 0. Therefore, the first element in this list might not be season 1.

Instances

tvPosterURLs :: Configuration -> TV -> [Text] Source

Return a list of URLs for all possible TV posters.