174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
18 lines
486 B
Go
18 lines
486 B
Go
package openapi3
|
|
|
|
const (
|
|
SerializationSimple = "simple"
|
|
SerializationLabel = "label"
|
|
SerializationMatrix = "matrix"
|
|
SerializationForm = "form"
|
|
SerializationSpaceDelimited = "spaceDelimited"
|
|
SerializationPipeDelimited = "pipeDelimited"
|
|
SerializationDeepObject = "deepObject"
|
|
)
|
|
|
|
// SerializationMethod describes a serialization method of HTTP request's parameters and body.
|
|
type SerializationMethod struct {
|
|
Style string
|
|
Explode bool
|
|
}
|