HttpParameter
data class HttpParameter(val name: String, val location: HttpParameterLocation, val required: Boolean = false, val schema: HttpSchema = HttpSchema.String, val description: String? = null, val example: Any? = null, val componentRef: String? = null)
Constructors
Link copied to clipboard
constructor(name: String, location: HttpParameterLocation, required: Boolean = false, schema: HttpSchema = HttpSchema.String, description: String? = null, example: Any? = null, componentRef: String? = null)