Skip to content

Instantly share code, notes, and snippets.

@gmoraleda
Last active November 15, 2018 12:40
Show Gist options
  • Save gmoraleda/7a24482f0010d89fca74d1bc04f214f7 to your computer and use it in GitHub Desktop.
Save gmoraleda/7a24482f0010d89fca74d1bc04f214f7 to your computer and use it in GitHub Desktop.
struct ApiResponse: Codable {
let errorCode: ErrorCode
let name: String
let age: Int
private enum CodingKeys: String, CodingKey {
case errorCode = "errorcode"
case name = "firstname"
case age = "userage"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment