Initial code snippet for An Overview of Codable: A Quick Peek
import Foundation | |
let json = """ | |
{ | |
"name": "Pasan", | |
"id": 1, | |
"role": "Teacher" | |
} | |
""".data(using: .utf8)! | |
struct Employee { | |
let name: String | |
let id: Int | |
let role: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment