Skip to content

Instantly share code, notes, and snippets.

@wadheraswati
Last active November 9, 2019 17:14
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/67db3289c8708b16c2709eae31238805 to your computer and use it in GitHub Desktop.
Save wadheraswati/67db3289c8708b16c2709eae31238805 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 location: String
enum CodingKeys: String, CodingKey {
case id
case location
}
}
let address = Address(id: 1,
location: "House no. 123, New Delhi, 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