Copyright | This file is part of the package themoviedb. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at: https://github.com/pjones/themoviedb No part of this package including this file may be copied modified propagated or distributed except according to the terms contained in the LICENSE file. |
---|---|
License | MIT |
Safe Haskell | None |
Language | Haskell2010 |
Synopsis
- data TV = TV {
- tvID :: ItemID
- tvName :: Text
- tvOverview :: Text
- tvGenres :: [Genre]
- tvPopularity :: Double
- tvPosterPath :: Text
- tvFirstAirDate :: Maybe Day
- tvLastAirDate :: Maybe Day
- tvNumberOfSeasons :: Int
- tvNumberOfEpisodes :: Int
- tvSeasons :: [Season]
- tvPosterURLs :: Configuration -> TV -> [Text]
Documentation
Metadata for a TV series.
- The
tvPosterPath
field is an incomplete URL. To construct a complete URL you'll need to use theConfiguration
type and thetvPosterURLs
helper function.
TV | |
|
tvPosterURLs :: Configuration -> TV -> [Text] Source #
Return a list of URLs for all possible TV posters.