Skip to content

Instantly share code, notes, and snippets.

@benstone1
Created December 7, 2017 15:17
Show Gist options
  • Save benstone1/efa58549eb3a22fd59dc50faf99c998e to your computer and use it in GitHub Desktop.
Save benstone1/efa58549eb3a22fd59dc50faf99c998e to your computer and use it in GitHub Desktop.
struct ResultsInfo: Codable {
//let number_of_results: Int
let results: [Person]
}
struct Person: Codable {
let name: String
let num: Int
let images: ImageWrapper?
}
struct ImageWrapper: Codable {
let small: String
let original: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment