post запрос, который возвращает
{
"success": true,
"data": "success"
}
struct ProfileResponse: Decodable {
let success: Bool
let data: String
}
No value associated with key CodingKeys(stringValue: \"success\", intValue: nil) (\"success\").", underlyingError: nil)) Почему ключ не видит?
Похоже что Success приходит в виде интеджера, и он nullable. А в структуре вы ожидаете Bool.
Обсуждают сегодня