Issue with `Schema.Class` Not Reflecting in OpenAPI Spec When Using `setUrlParams`
I'm in the process of building an API using the API builder pattern. Within one of my defined endpoints, I was defining url parameters via a schema leveraging
setUrlParams. I first tried passing in an instance of Schema.Class. This worked from a type perspective but the resulting url params did not show up in my open api spec viewed via swagger. However, changing to Schema.Struct did work. I'm wondering if this could be a bug in the library. If schema.class is not supported i would imagine a type error should arise.