> boxed if a primitive So this won't work: ```@...
# squarelibraries
d
boxed if a primitive
So this won't work:
Copy code
@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?)
Copy code
@PUT("/someendpoint")
suspend fun foo(someId: SomeSearch): Unit

@JvmInline
value class SomeSearch(val value: String)