Header
data class Header(val description: String? = null, val type: Swagger.Header.Type, val format: String? = null, val items: Swagger.Definition? = null, val collectionFormat: Swagger.Header.CollectionFormat = CollectionFormat.Csv, val default: JsonElement? = null, val maximum: Int? = null, val exclusiveMaximum: Boolean? = null, val minimum: Int? = null, val exclusiveMinimum: Boolean? = null, val maxLength: Int? = null, val minLength: Int? = null, val pattern: String? = null, val maxItems: Int? = null, val minItems: Int? = null, val uniqueItems: Int? = null, val enum: Set<String> = emptySet(), val multipleOf: Int? = null)(source)
Constructors
Link copied to clipboard
constructor(description: String? = null, type: Swagger.Header.Type, format: String? = null, items: Swagger.Definition? = null, collectionFormat: Swagger.Header.CollectionFormat = CollectionFormat.Csv, default: JsonElement? = null, maximum: Int? = null, exclusiveMaximum: Boolean? = null, minimum: Int? = null, exclusiveMinimum: Boolean? = null, maxLength: Int? = null, minLength: Int? = null, pattern: String? = null, maxItems: Int? = null, minItems: Int? = null, uniqueItems: Int? = null, enum: Set<String> = emptySet(), multipleOf: Int? = null)