Skip to content

Instantly share code, notes, and snippets.

@trupin
Last active September 23, 2018 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trupin/463948d5916da4cf3f1c8354771edd95 to your computer and use it in GitHub Desktop.
Save trupin/463948d5916da4cf3f1c8354771edd95 to your computer and use it in GitHub Desktop.
struct Movie: Decodable {
let vote_count: UInt
let id: UInt
let video: Bool
let vote_average: Float
let title: String
let popularity: Float
let poster_path: String
let original_language: String
let original_title: String
let adult: Bool
let overview: String
let release_date: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment