iOS Swift - Networking
What is the issue with this custom decoder configuration in Swift?
struct Product: Decodable {
let id: Int
let name: String
enum CodingKeys: String, CodingKey {
case id
case productName = "name"
}
}