swift4 で JSONDecodable を使用しているときに、次のエラーが発生します。"Type UserRegister does not confirm to protocol 'Decodable' "
私のモデル構造は次のようになります。
struct UserRegister: Decodable {
let id : NSInteger
let name : String?
let email : String?
let cities : Array<Any>?
let tax : [tax]
let username : [username]
}
struct tax : Decodable {
let deviceId : NSInteger?
let financialYear : String?
let country : String?
let name : String?
let state : String?
let taxCode : String?
let value : NSInteger?
}
struct username : Decodable {
let email : String?
let phone : String?
}