Skip to content

Instantly share code, notes, and snippets.

@jarsen
Created June 6, 2017 17:27
Show Gist options
  • Select an option

  • Save jarsen/70de1dc800cbd487da6b5827e7a50654 to your computer and use it in GitHub Desktop.

Select an option

Save jarsen/70de1dc800cbd487da6b5827e7a50654 to your computer and use it in GitHub Desktop.
struct Student: Codable {
var name: String
var age: Int
var email: String
enum CodingKeys: String, CodingKey {
case name
case age = "student_age"
case email
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment