I have a simple case class which models Http response:
case class Other(name: String, age: Int)
case class MyResponse(id: String, name: String, others: List[Other])
I created decoders for them:
implicit val decoderOther: Decoder[Other] = deriveDecoder[Other]
implicit val decoderMyResponse: Decoder[MyResponse] = deriveDecoder[MyResponse]
But when I call it on sttp
http client:
basicRequest.(...).get(...).response(asJson[MyResponse].getRight).send(backend).map(_)
I got a Desarialization
error:
sttp.client3.DeserializationException: DecodingFailure at .id Missing required field
I don't know why it cannot be parsed correctly. Decoders seems fine. When I change MyResponse
to circe
Json class it works fine:
Response([{ "id": "121", "name": "test", "others": [] }])
but I would like to parse it to my model. Can you help me?
If you write
asJson[MyResponse]
you needEncoder
rather thanDecoder
.So add
You can replace
Encoder
andDecoder
withCodec
https://scastie.scala-lang.org/DmytroMitin/W3wgn0gbRXyA1vRI6OyoUg/1