|
|
|
|
@@ -11,12 +11,12 @@ package petstore
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"github.com/antihax/optional"
|
|
|
|
|
"io/ioutil"
|
|
|
|
|
"net/http"
|
|
|
|
|
"net/url"
|
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
|
|
|
|
"github.com/antihax/optional"
|
|
|
|
|
"os"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Linger please
|
|
|
|
|
@@ -36,15 +36,15 @@ Test serialization of outer boolean types
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type FakeOuterBooleanSerializeOpts struct {
|
|
|
|
|
Body optional.Bool
|
|
|
|
|
Body optional.Bool
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) FakeOuterBooleanSerialize(ctx context.Context, localVarOptionals *FakeOuterBooleanSerializeOpts) (bool, *http.Response, error) {
|
|
|
|
|
var (
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarReturnValue bool
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@@ -95,7 +95,7 @@ func (a *FakeApiService) FakeOuterBooleanSerialize(ctx context.Context, localVar
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode < 300 {
|
|
|
|
|
// If we succeed, return the data, otherwise pass on to decode error.
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err == nil {
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, err
|
|
|
|
|
}
|
|
|
|
|
@@ -103,18 +103,18 @@ func (a *FakeApiService) FakeOuterBooleanSerialize(ctx context.Context, localVar
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
if localVarHttpResponse.StatusCode == 200 {
|
|
|
|
|
var v bool
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
@@ -132,15 +132,15 @@ Test serialization of object with outer number type
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type FakeOuterCompositeSerializeOpts struct {
|
|
|
|
|
OuterComposite optional.Interface
|
|
|
|
|
OuterComposite optional.Interface
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) FakeOuterCompositeSerialize(ctx context.Context, localVarOptionals *FakeOuterCompositeSerializeOpts) (OuterComposite, *http.Response, error) {
|
|
|
|
|
var (
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarReturnValue OuterComposite
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@@ -195,7 +195,7 @@ func (a *FakeApiService) FakeOuterCompositeSerialize(ctx context.Context, localV
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode < 300 {
|
|
|
|
|
// If we succeed, return the data, otherwise pass on to decode error.
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err == nil {
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, err
|
|
|
|
|
}
|
|
|
|
|
@@ -203,18 +203,18 @@ func (a *FakeApiService) FakeOuterCompositeSerialize(ctx context.Context, localV
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
if localVarHttpResponse.StatusCode == 200 {
|
|
|
|
|
var v OuterComposite
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
@@ -232,15 +232,15 @@ Test serialization of outer number types
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type FakeOuterNumberSerializeOpts struct {
|
|
|
|
|
Body optional.Float32
|
|
|
|
|
Body optional.Float32
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) FakeOuterNumberSerialize(ctx context.Context, localVarOptionals *FakeOuterNumberSerializeOpts) (float32, *http.Response, error) {
|
|
|
|
|
var (
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarReturnValue float32
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@@ -291,7 +291,7 @@ func (a *FakeApiService) FakeOuterNumberSerialize(ctx context.Context, localVarO
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode < 300 {
|
|
|
|
|
// If we succeed, return the data, otherwise pass on to decode error.
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err == nil {
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, err
|
|
|
|
|
}
|
|
|
|
|
@@ -299,18 +299,18 @@ func (a *FakeApiService) FakeOuterNumberSerialize(ctx context.Context, localVarO
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
if localVarHttpResponse.StatusCode == 200 {
|
|
|
|
|
var v float32
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
@@ -328,15 +328,15 @@ Test serialization of outer string types
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type FakeOuterStringSerializeOpts struct {
|
|
|
|
|
Body optional.String
|
|
|
|
|
Body optional.String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) FakeOuterStringSerialize(ctx context.Context, localVarOptionals *FakeOuterStringSerializeOpts) (string, *http.Response, error) {
|
|
|
|
|
var (
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Post")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarReturnValue string
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@@ -387,7 +387,7 @@ func (a *FakeApiService) FakeOuterStringSerialize(ctx context.Context, localVarO
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode < 300 {
|
|
|
|
|
// If we succeed, return the data, otherwise pass on to decode error.
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err == nil {
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, err
|
|
|
|
|
}
|
|
|
|
|
@@ -395,18 +395,18 @@ func (a *FakeApiService) FakeOuterStringSerialize(ctx context.Context, localVarO
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
if localVarHttpResponse.StatusCode == 200 {
|
|
|
|
|
var v string
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
@@ -473,7 +473,7 @@ func (a *FakeApiService) TestBodyWithQueryParams(ctx context.Context, query stri
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
return localVarHttpResponse, newErr
|
|
|
|
|
@@ -491,10 +491,10 @@ To test \"client\" model
|
|
|
|
|
*/
|
|
|
|
|
func (a *FakeApiService) TestClientModel(ctx context.Context, client Client) (Client, *http.Response, error) {
|
|
|
|
|
var (
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Patch")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarHttpMethod = strings.ToUpper("Patch")
|
|
|
|
|
localVarPostBody interface{}
|
|
|
|
|
localVarFileName string
|
|
|
|
|
localVarFileBytes []byte
|
|
|
|
|
localVarReturnValue Client
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@@ -542,7 +542,7 @@ func (a *FakeApiService) TestClientModel(ctx context.Context, client Client) (Cl
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode < 300 {
|
|
|
|
|
// If we succeed, return the data, otherwise pass on to decode error.
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err == nil {
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, err
|
|
|
|
|
}
|
|
|
|
|
@@ -550,18 +550,18 @@ func (a *FakeApiService) TestClientModel(ctx context.Context, client Client) (Cl
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
if localVarHttpResponse.StatusCode == 200 {
|
|
|
|
|
var v Client
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type"));
|
|
|
|
|
if err != nil {
|
|
|
|
|
newErr.error = err.Error()
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
newErr.model = v
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
return localVarReturnValue, localVarHttpResponse, newErr
|
|
|
|
|
}
|
|
|
|
|
@@ -591,16 +591,16 @@ Fake endpoint for testing various parameters 假端點 偽のエンドポイン
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type TestEndpointParametersOpts struct {
|
|
|
|
|
Integer optional.Int32
|
|
|
|
|
Int32_ optional.Int32
|
|
|
|
|
Int64_ optional.Int64
|
|
|
|
|
Float optional.Float32
|
|
|
|
|
String_ optional.String
|
|
|
|
|
Binary optional.Interface
|
|
|
|
|
Date optional.String
|
|
|
|
|
DateTime optional.Time
|
|
|
|
|
Password optional.String
|
|
|
|
|
Callback optional.String
|
|
|
|
|
Integer optional.Int32
|
|
|
|
|
Int32_ optional.Int32
|
|
|
|
|
Int64_ optional.Int64
|
|
|
|
|
Float optional.Float32
|
|
|
|
|
String_ optional.String
|
|
|
|
|
Binary optional.Interface
|
|
|
|
|
Date optional.String
|
|
|
|
|
DateTime optional.Time
|
|
|
|
|
Password optional.String
|
|
|
|
|
Callback optional.String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) TestEndpointParameters(ctx context.Context, number float32, double float64, patternWithoutDelimiter string, byte_ string, localVarOptionals *TestEndpointParametersOpts) (*http.Response, error) {
|
|
|
|
|
@@ -671,7 +671,7 @@ func (a *FakeApiService) TestEndpointParameters(ctx context.Context, number floa
|
|
|
|
|
localVarFileOk := false
|
|
|
|
|
localVarFile, localVarFileOk = localVarOptionals.Binary.Value().(*os.File)
|
|
|
|
|
if !localVarFileOk {
|
|
|
|
|
return nil, reportError("binary should be *os.File")
|
|
|
|
|
return nil, reportError("binary should be *os.File")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if localVarFile != nil {
|
|
|
|
|
@@ -710,7 +710,7 @@ func (a *FakeApiService) TestEndpointParameters(ctx context.Context, number floa
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
return localVarHttpResponse, newErr
|
|
|
|
|
@@ -730,19 +730,19 @@ To test enum parameters
|
|
|
|
|
* @param "EnumQueryString" (optional.String) - Query parameter enum test (string)
|
|
|
|
|
* @param "EnumQueryInteger" (optional.Int32) - Query parameter enum test (double)
|
|
|
|
|
* @param "EnumQueryDouble" (optional.Float64) - Query parameter enum test (double)
|
|
|
|
|
* @param "EnumFormStringArray" (optional.[]string) - Form parameter enum test (string array)
|
|
|
|
|
* @param "EnumFormStringArray" (optional.Interface of []string) - Form parameter enum test (string array)
|
|
|
|
|
* @param "EnumFormString" (optional.String) - Form parameter enum test (string)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
type TestEnumParametersOpts struct {
|
|
|
|
|
EnumHeaderStringArray optional.Interface
|
|
|
|
|
EnumHeaderString optional.String
|
|
|
|
|
EnumQueryStringArray optional.Interface
|
|
|
|
|
EnumQueryString optional.String
|
|
|
|
|
EnumQueryInteger optional.Int32
|
|
|
|
|
EnumQueryDouble optional.Float64
|
|
|
|
|
EnumFormStringArray optional.Interface
|
|
|
|
|
EnumFormString optional.String
|
|
|
|
|
EnumHeaderStringArray optional.Interface
|
|
|
|
|
EnumHeaderString optional.String
|
|
|
|
|
EnumQueryStringArray optional.Interface
|
|
|
|
|
EnumQueryString optional.String
|
|
|
|
|
EnumQueryInteger optional.Int32
|
|
|
|
|
EnumQueryDouble optional.Float64
|
|
|
|
|
EnumFormStringArray optional.Interface
|
|
|
|
|
EnumFormString optional.String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a *FakeApiService) TestEnumParameters(ctx context.Context, localVarOptionals *TestEnumParametersOpts) (*http.Response, error) {
|
|
|
|
|
@@ -819,7 +819,7 @@ func (a *FakeApiService) TestEnumParameters(ctx context.Context, localVarOptiona
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
return localVarHttpResponse, newErr
|
|
|
|
|
@@ -885,7 +885,7 @@ func (a *FakeApiService) TestInlineAdditionalProperties(ctx context.Context, req
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
return localVarHttpResponse, newErr
|
|
|
|
|
@@ -952,7 +952,7 @@ func (a *FakeApiService) TestJsonFormData(ctx context.Context, param string, par
|
|
|
|
|
|
|
|
|
|
if localVarHttpResponse.StatusCode >= 300 {
|
|
|
|
|
newErr := GenericOpenAPIError{
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
body: localVarBody,
|
|
|
|
|
error: localVarHttpResponse.Status,
|
|
|
|
|
}
|
|
|
|
|
return localVarHttpResponse, newErr
|
|
|
|
|
|