This file contains 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
// Model | |
import Foundation | |
class Post: Codable { | |
var id = 0 | |
var userId = 0 | |
var title = "" | |
var body = "" | |
} |
This file contains 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
[ | |
{ | |
"country": "Albania", | |
"capital": "Tirana", | |
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Tirana_from_South.jpg/1200px-Tirana_from_South.jpg" | |
}, | |
{ | |
"country": "Andorra", | |
"capital": "Andorra la Vella", | |
"logoUrl": "https://upload.wikimedia.org/wikipedia/commons/7/71/Andorra_la_vella_felul.jpg" |
This file contains 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
[ | |
"Ozie Hanrahan", | |
"Delphine Klein", | |
"Regan Tienda", | |
"Tajuana Beatty", | |
"Daniell Velasco", | |
"Howard Dittrich", | |
"Allene Gardenhire", | |
"Danyell Gross", | |
"Suzette Flecha", |
This file contains 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
{ | |
"rating": 4.5 | |
} |