AV
Size: a a a
AV
Oℕ
Oℕ
AV
Oℕ
Oℕ
AV
Oℕ
AS
R
case class ExampleHttpResponse(id: Int, text: Option[String], value: Option[Double])
val exampleResponse = ExampleHttpResponse(1, None, Some(13.37))
val client = SomeClient()
val response = client.get[ExampleHttpResponse](stubUri)
R
println(response.id == exampleResponse.id) //true
println(response.text == exampleResponse.text) //true
println(response.value == exampleResponse.value) //true
println(response == exampleResponse) //false (!?)
R
AV
AV
AV
AV
AV
AV
AV
AV