Parameter
data class Parameter(val name: String? = null, val description: String? = null, val position: Swagger.Parameter.Position? = null, val required: Boolean? = null, val type: Swagger.Parameter.Types? = null, val enum: Set<String> = emptySet(), val default: JsonElement? = null, val minimum: JsonElement? = null, val maximum: JsonElement? = null, val schema: Swagger.Definition? = null, val ref: String? = null, val items: Swagger.Definition? = null)(source)
Constructors
Link copied to clipboard
constructor(name: String? = null, description: String? = null, position: Swagger.Parameter.Position? = null, required: Boolean? = null, type: Swagger.Parameter.Types? = null, enum: Set<String> = emptySet(), default: JsonElement? = null, minimum: JsonElement? = null, maximum: JsonElement? = null, schema: Swagger.Definition? = null, ref: String? = null, items: Swagger.Definition? = null)