Hello,
I want to define a query parameter for an endpoint like so:
@endpointInput("path")
case class Input(
@annotations.query("object")
object: Option[MyCustomObject],
)
case class MyCustomObject(
foo: Int,
bar: String
)
where this endpoint accepts requests like at a path uri like “path?object[foo]=0&object[bar]=baz”
Is this possible to do with a custom codec?