Skip to content

Instantly share code, notes, and snippets.

@wadheraswati
Created November 9, 2019 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wadheraswati/df0b3ac4ab3f35ad9c11f8bba457b64b to your computer and use it in GitHub Desktop.
Save wadheraswati/df0b3ac4ab3f35ad9c11f8bba457b64b to your computer and use it in GitHub Desktop.
struct User: Encodable {
let id: Int
let name: Encodable
let address: Address
enum CodingKeys: String, CodingKey {
case id
case name
}
}
struct Address: Encodable {
let id: Int
let address: String
let city: String
let state: String
let country: String
enum CodingKeys: String, CodingKey {
case id
case address
case city
case state
case country
}
}
let address = Address(id: 1,
address: "House no. 123",
city: "New Delhi",
state: "Delhi",
country: "India")
let user = User(id: 1,
name: "John",
address: address)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment