Issue 11401 - report correctly the parameters with the deep object specification (#13909)

* issue #11401 - Go client generator doesn't support deepObject in query

* samples generation

* fix generation

* fix generation

* generated samples

# Conflicts:
#	samples/client/petstore/go/go-petstore/model_200_response.go
#	samples/client/petstore/go/go-petstore/model_additional_properties_any_type.go
#	samples/client/petstore/go/go-petstore/model_client.go

* Fixed unit tests

* revert to http connection for tests

* fix model_simple generation

* Fix parameter encoding issue

* simplified routine

* fix test url

* adapted for latest master, necessary generation

* samples generation

* sync with new master, regenerate samples

* added api client test
This commit is contained in:
Vittorio Parrella
2022-11-20 02:09:33 -05:00
committed by GitHub
parent 95b566a3a9
commit 4487042f0d
124 changed files with 2099 additions and 441 deletions

View File

@@ -341,3 +341,7 @@ func isNil(i interface{}) bool {
}
return false
}
type MappedNullable interface {
ToMap() (map[string]interface{}, error)
}