dave08
04/27/2023, 1:20 PMboxed if a primitiveSo this won't work:
@PUT("/someendpoint")
suspend fun foo(someId: SomeId): Unit
@JvmInline
value class SomeId(val value: Int)
and this will (since it won't see a boxed value?)
@PUT("/someendpoint")
suspend fun foo(someId: SomeSearch): Unit
@JvmInline
value class SomeSearch(val value: String)