Last active
September 19, 2017 21:25
-
-
Save ArchieR7/fd3552e7a86153a5d5a20e41b2d36fd6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
{ | |
"status": true, | |
"user": { | |
"ID": "1234567890", | |
"name": "Archie", | |
"email": "[email protected]" | |
} | |
*/ | |
guard let status = result["status"] as? Bool, | |
let ID = (result["user"] as? [String: Any])?["ID"] as? String, | |
let name = (result["user"] as? [String: Any])?["name"] as? String, | |
let email = (result["user"] as? [String: Any])?["email"] as? String else { | |
throw Error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment