[go] More idiomatic godoc comments (#10044)

* [go] More idiomatic godoc comments

* [go] Mark deprecated fields and functions

* [go] Minor mustache readability/consistency fixes

* [go] Mark deprecated operation parameters

* [go] Deprecate a petstore component property for testing

* [go] Apply deprecated godoc in Go servers also
This commit is contained in:
Nathan Baulch 2021-08-03 19:11:16 +10:00 committed by GitHub
parent 4210b41f84
commit c1c5775271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
178 changed files with 2344 additions and 2169 deletions

View File

@ -51,6 +51,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
public Map<String, Object> vendorExtensions = new HashMap<String, Object>(); public Map<String, Object> vendorExtensions = new HashMap<String, Object>();
public boolean hasValidation; public boolean hasValidation;
public boolean isNullable; public boolean isNullable;
public boolean isDeprecated;
/** /**
* Determines whether this parameter is mandatory. If the parameter is in "path", * Determines whether this parameter is mandatory. If the parameter is in "path",
* this property is required and its value MUST be true. Otherwise, the property * this property is required and its value MUST be true. Otherwise, the property
@ -179,6 +180,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
} }
output.hasValidation = this.hasValidation; output.hasValidation = this.hasValidation;
output.isNullable = this.isNullable; output.isNullable = this.isNullable;
output.isDeprecated = this.isDeprecated;
output.isBinary = this.isBinary; output.isBinary = this.isBinary;
output.isByteArray = this.isByteArray; output.isByteArray = this.isByteArray;
output.isString = this.isString; output.isString = this.isString;
@ -211,7 +213,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
@Override @Override
public int hashCode() { public int hashCode() {
return Objects.hash(isFormParam, isQueryParam, isPathParam, isHeaderParam, isCookieParam, isBodyParam, isContainer, isCollectionFormatMulti, isPrimitiveType, isModel, isExplode, baseName, paramName, dataType, datatypeWithEnum, dataFormat, collectionFormat, description, unescapedDescription, baseType, defaultValue, enumName, style, isDeepObject, example, jsonSchema, isString, isNumeric, isInteger, isLong, isNumber, isFloat, isDouble, isDecimal, isByteArray, isBinary, isBoolean, isDate, isDateTime, isUuid, isUri, isEmail, isFreeFormObject, isAnyType, isArray, isMap, isFile, isEnum, _enum, allowableValues, items, mostInnerItems, additionalProperties, vars, requiredVars, vendorExtensions, hasValidation, getMaxProperties(), getMinProperties(), isNullable, required, getMaximum(), getExclusiveMaximum(), getMinimum(), getExclusiveMinimum(), getMaxLength(), getMinLength(), getPattern(), getMaxItems(), getMinItems(), getUniqueItems(), contentType, multipleOf, isNull, additionalPropertiesIsAnyType, hasVars, hasRequired, isShort, isUnboundedInteger); return Objects.hash(isFormParam, isQueryParam, isPathParam, isHeaderParam, isCookieParam, isBodyParam, isContainer, isCollectionFormatMulti, isPrimitiveType, isModel, isExplode, baseName, paramName, dataType, datatypeWithEnum, dataFormat, collectionFormat, description, unescapedDescription, baseType, defaultValue, enumName, style, isDeepObject, example, jsonSchema, isString, isNumeric, isInteger, isLong, isNumber, isFloat, isDouble, isDecimal, isByteArray, isBinary, isBoolean, isDate, isDateTime, isUuid, isUri, isEmail, isFreeFormObject, isAnyType, isArray, isMap, isFile, isEnum, _enum, allowableValues, items, mostInnerItems, additionalProperties, vars, requiredVars, vendorExtensions, hasValidation, getMaxProperties(), getMinProperties(), isNullable, isDeprecated, required, getMaximum(), getExclusiveMaximum(), getMinimum(), getExclusiveMinimum(), getMaxLength(), getMinLength(), getPattern(), getMaxItems(), getMinItems(), getUniqueItems(), contentType, multipleOf, isNull, additionalPropertiesIsAnyType, hasVars, hasRequired, isShort, isUnboundedInteger);
} }
@Override @Override
@ -256,6 +258,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
isEnum == that.isEnum && isEnum == that.isEnum &&
hasValidation == that.hasValidation && hasValidation == that.hasValidation &&
isNullable == that.isNullable && isNullable == that.isNullable &&
isDeprecated == that.isDeprecated &&
required == that.required && required == that.required &&
isNull == that.isNull && isNull == that.isNull &&
getAdditionalPropertiesIsAnyType() == that.getAdditionalPropertiesIsAnyType() && getAdditionalPropertiesIsAnyType() == that.getAdditionalPropertiesIsAnyType() &&
@ -365,6 +368,7 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
sb.append(", maxProperties=").append(maxProperties); sb.append(", maxProperties=").append(maxProperties);
sb.append(", minProperties=").append(minProperties); sb.append(", minProperties=").append(minProperties);
sb.append(", isNullable=").append(isNullable); sb.append(", isNullable=").append(isNullable);
sb.append(", isDeprecated=").append(isDeprecated);
sb.append(", required=").append(required); sb.append(", required=").append(required);
sb.append(", maximum='").append(maximum).append('\''); sb.append(", maximum='").append(maximum).append('\'');
sb.append(", exclusiveMaximum=").append(exclusiveMaximum); sb.append(", exclusiveMaximum=").append(exclusiveMaximum);

View File

@ -4334,6 +4334,9 @@ public class DefaultCodegen implements CodegenConfig {
if (parameter.getRequired() != null) { if (parameter.getRequired() != null) {
codegenParameter.required = parameter.getRequired(); codegenParameter.required = parameter.getRequired();
} }
if (parameter.getDeprecated() != null) {
codegenParameter.isDeprecated = parameter.getDeprecated();
}
codegenParameter.jsonSchema = Json.pretty(parameter); codegenParameter.jsonSchema = Json.pretty(parameter);
if (GlobalSettings.getProperty("debugParser") != null) { if (GlobalSettings.getProperty("debugParser") != null) {

View File

@ -7,6 +7,9 @@ import (
){{#operation}} ){{#operation}}
// {{nickname}} - {{{summary}}} // {{nickname}} - {{{summary}}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func (c *Container) {{operationId}}(ctx echo.Context) error { func (c *Container) {{operationId}}(ctx echo.Context) error {
return ctx.JSON(http.StatusOK, models.HelloWorld { return ctx.JSON(http.StatusOK, models.HelloWorld {
Message: "Hello World", Message: "Hello World",

View File

@ -17,7 +17,7 @@ func main() {
e.Use(middleware.Recover()) e.Use(middleware.Recover())
{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}} {{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}
// {{nickname}} - {{{summary}}} // {{nickname}} - {{{summary}}}{{#isDeprecated}} (deprecated){{/isDeprecated}}
e.{{httpMethod.toUpperCase}}("{{{basePathWithoutHost}}}{{{path}}}", c.{{operationId}}) e.{{httpMethod.toUpperCase}}("{{{basePathWithoutHost}}}{{{path}}}", c.{{operationId}})
{{/operation}}{{/operations}}{{/apis}}{{/apiInfo}} {{/operation}}{{/operations}}{{/apis}}{{/apiInfo}}

View File

@ -18,6 +18,9 @@ const (
type {{classname}} struct { type {{classname}} struct {
{{#vars}}{{#description}} {{#vars}}{{#description}}
// {{{description}}}{{/description}} // {{{description}}}{{/description}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
{{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}` {{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}`
{{/vars}} {{/vars}}
}{{/isEnum}}{{/model}}{{/models}} }{{/isEnum}}{{/model}}{{/models}}

View File

@ -9,6 +9,9 @@ import (
){{#operation}} ){{#operation}}
// {{nickname}} - {{{summary}}} // {{nickname}} - {{{summary}}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func {{nickname}}(c *gin.Context) { func {{nickname}}(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{}) c.JSON(http.StatusOK, gin.H{})
}{{/operation}}{{/operations}} }{{/operation}}{{/operations}}

View File

@ -19,6 +19,9 @@ const (
type {{classname}} struct { type {{classname}} struct {
{{#vars}}{{#description}} {{#vars}}{{#description}}
// {{{description}}}{{/description}} // {{{description}}}{{/description}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
{{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}` {{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}`
{{/vars}} {{/vars}}
}{{/isEnum}}{{/model}}{{/models}} }{{/isEnum}}{{/model}}{{/models}}

View File

@ -13,6 +13,9 @@ import (
// The {{classname}}Router implementation should parse necessary information from the http request, // The {{classname}}Router implementation should parse necessary information from the http request,
// pass the data to a {{classname}}Servicer to perform the required actions, then write the service results to the http response. // pass the data to a {{classname}}Servicer to perform the required actions, then write the service results to the http response.
type {{classname}}Router interface { {{#operations}}{{#operation}} type {{classname}}Router interface { {{#operations}}{{#operation}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
{{operationId}}(http.ResponseWriter, *http.Request){{/operation}}{{/operations}} {{operationId}}(http.ResponseWriter, *http.Request){{/operation}}{{/operations}}
}{{/apis}}{{/apiInfo}}{{#apiInfo}}{{#apis}} }{{/apis}}{{/apiInfo}}{{#apiInfo}}{{#apis}}
@ -22,5 +25,8 @@ type {{classname}}Router interface { {{#operations}}{{#operation}}
// while the service implementation can ignored with the .openapi-generator-ignore file // while the service implementation can ignored with the .openapi-generator-ignore file
// and updated with the logic required for the API. // and updated with the logic required for the API.
type {{classname}}Servicer interface { {{#operations}}{{#operation}} type {{classname}}Servicer interface { {{#operations}}{{#operation}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
{{operationId}}(context.Context{{#allParams}}, {{dataType}}{{/allParams}}) (ImplResponse, error){{/operation}}{{/operations}} {{operationId}}(context.Context{{#allParams}}, {{dataType}}{{/allParams}}) (ImplResponse, error){{/operation}}{{/operations}}
}{{/apis}}{{/apiInfo}} }{{/apis}}{{/apiInfo}}

View File

@ -59,6 +59,9 @@ func (c *{{classname}}Controller) Routes() Routes {
}{{#operations}}{{#operation}} }{{#operations}}{{#operation}}
// {{nickname}} - {{{summary}}} // {{nickname}} - {{{summary}}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func (c *{{classname}}Controller) {{nickname}}(w http.ResponseWriter, r *http.Request) { func (c *{{classname}}Controller) {{nickname}}(w http.ResponseWriter, r *http.Request) {
{{#hasFormParams}} {{#hasFormParams}}
{{#isMultipart}} {{#isMultipart}}

View File

@ -29,6 +29,9 @@ type {{classname}} struct {
{{/parent}} {{/parent}}
{{#vars}}{{#description}} {{#vars}}{{#description}}
// {{{description}}}{{/description}} // {{{description}}}{{/description}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
{{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}` {{name}} {{#isNullable}}*{{/isNullable}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}`
{{/vars}} {{/vars}}
}{{/isEnum}}{{/model}}{{/models}} }{{/isEnum}}{{/model}}{{/models}}

View File

@ -20,6 +20,9 @@ func New{{classname}}Service() {{classname}}Servicer {
}{{#operations}}{{#operation}} }{{#operations}}{{#operation}}
// {{nickname}} - {{summary}} // {{nickname}} - {{summary}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func (s *{{classname}}Service) {{nickname}}(ctx context.Context{{#allParams}}, {{paramName}} {{dataType}}{{/allParams}}) (ImplResponse, error) { func (s *{{classname}}Service) {{nickname}}(ctx context.Context{{#allParams}}, {{paramName}} {{dataType}}{{/allParams}}) (ImplResponse, error) {
// TODO - update {{nickname}} with the required logic for this service method. // TODO - update {{nickname}} with the required logic for this service method.
// Add {{classFilename}}_service.go to the .openapi-generator-ignore to avoid overwriting this service implementation when updating open api generation. // Add {{classFilename}}_service.go to the .openapi-generator-ignore to avoid overwriting this service implementation when updating open api generation.

View File

@ -86,7 +86,7 @@ All URIs are relative to *{{basePath}}*
Class | Method | HTTP request | Description Class | Method | HTTP request | Description
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} {{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{summary}}
{{/operation}}{{/operations}}{{/apis}}{{/apiInfo}} {{/operation}}{{/operations}}{{/apis}}{{/apiInfo}}
## Documentation For Models ## Documentation For Models

View File

@ -22,20 +22,27 @@ type {{classname}} interface {
{{#operation}} {{#operation}}
/* /*
* {{operationId}}{{#summary}} {{{.}}}{{/summary}}{{^summary}} Method for {{operationId}}{{/summary}} {{operationId}} {{{summary}}}{{^summary}}Method for {{operationId}}{{/summary}}
{{#notes}} {{#notes}}
* {{{unescapedNotes}}}
{{{unescapedNotes}}}
{{/notes}} {{/notes}}
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().{{#pathParams}}
* @param {{paramName}}{{#description}} {{{.}}}{{/description}}{{/pathParams}} @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().{{#pathParams}}
* @return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request @param {{paramName}}{{#description}} {{{.}}}{{/description}}{{/pathParams}}
*/ @return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request
{{#isDeprecated}}
Deprecated
{{/isDeprecated}}
*/
{{{nickname}}}(ctx _context.Context{{#pathParams}}, {{paramName}} {{{dataType}}}{{/pathParams}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request {{{nickname}}}(ctx _context.Context{{#pathParams}}, {{paramName}} {{{dataType}}}{{/pathParams}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request
/* // {{nickname}}Execute executes the request{{#returnType}}
* {{nickname}}Execute executes the request{{#returnType}} // @return {{{.}}}{{/returnType}}
* @return {{{.}}}{{/returnType}} {{#isDeprecated}}
*/ // Deprecated
{{/isDeprecated}}
{{nickname}}Execute(r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) ({{#returnType}}{{{.}}}, {{/returnType}}*_nethttp.Response, error) {{nickname}}Execute(r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) ({{#returnType}}{{{.}}}, {{/returnType}}*_nethttp.Response, error)
{{/operation}} {{/operation}}
} }
@ -46,16 +53,19 @@ type {{classname}}Service service
{{#operation}} {{#operation}}
type {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request struct { type {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request struct {
ctx _context.Context{{#generateInterfaces}} ctx _context.Context
ApiService {{classname}} ApiService {{#generateInterfaces}}{{classname}}{{/generateInterfaces}}{{^generateInterfaces}}*{{classname}}Service{{/generateInterfaces}}
{{/generateInterfaces}}{{^generateInterfaces}}
ApiService *{{classname}}Service
{{/generateInterfaces}}
{{#allParams}} {{#allParams}}
{{paramName}} {{^isPathParam}}*{{/isPathParam}}{{{dataType}}} {{paramName}} {{^isPathParam}}*{{/isPathParam}}{{{dataType}}}
{{/allParams}} {{/allParams}}
} }
{{#allParams}}{{^isPathParam}} {{#allParams}}{{^isPathParam}}
{{#description}}
// {{.}}
{{/description}}
{{#isDeprecated}}
// Deprecated
{{/isDeprecated}}
func (r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) {{vendorExtensions.x-export-param-name}}({{paramName}} {{{dataType}}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request { func (r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) {{vendorExtensions.x-export-param-name}}({{paramName}} {{{dataType}}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request {
r.{{paramName}} = &{{paramName}} r.{{paramName}} = &{{paramName}}
return r return r
@ -66,14 +76,20 @@ func (r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Reques
} }
/* /*
* {{operationId}}{{#summary}} {{{.}}}{{/summary}}{{^summary}} Method for {{operationId}}{{/summary}} {{operationId}} {{{summary}}}{{^summary}}Method for {{operationId}}{{/summary}}
{{#notes}} {{#notes}}
* {{{unescapedNotes}}}
{{{unescapedNotes}}}
{{/notes}} {{/notes}}
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().{{#pathParams}}
* @param {{paramName}}{{#description}} {{{.}}}{{/description}}{{/pathParams}} @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().{{#pathParams}}
* @return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request @param {{paramName}}{{#description}} {{{.}}}{{/description}}{{/pathParams}}
*/ @return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request
{{#isDeprecated}}
Deprecated
{{/isDeprecated}}
*/
func (a *{{{classname}}}Service) {{{nickname}}}(ctx _context.Context{{#pathParams}}, {{paramName}} {{{dataType}}}{{/pathParams}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request { func (a *{{{classname}}}Service) {{{nickname}}}(ctx _context.Context{{#pathParams}}, {{paramName}} {{{dataType}}}{{/pathParams}}) {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request {
return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request{ return {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request{
ApiService: a, ApiService: a,
@ -84,10 +100,11 @@ func (a *{{{classname}}}Service) {{{nickname}}}(ctx _context.Context{{#pathParam
} }
} }
/* // Execute executes the request{{#returnType}}
* Execute executes the request{{#returnType}} // @return {{{.}}}{{/returnType}}
* @return {{{.}}}{{/returnType}} {{#isDeprecated}}
*/ // Deprecated
{{/isDeprecated}}
func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) ({{#returnType}}{{{.}}}, {{/returnType}}*_nethttp.Response, error) { func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&classname}}{{/structPrefix}}Api{{operationId}}Request) ({{#returnType}}{{{.}}}, {{/returnType}}*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.Method{{httpMethod}} localVarHTTPMethod = _nethttp.Method{{httpMethod}}
@ -106,7 +123,7 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
} }
localVarPath := localBasePath + "{{{path}}}"{{#pathParams}} localVarPath := localBasePath + "{{{path}}}"{{#pathParams}}
localVarPath = strings.Replace(localVarPath, "{"+"{{baseName}}"+"}", _neturl.PathEscape(parameterToString(r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")), -1){{/pathParams}} localVarPath = strings.Replace(localVarPath, "{"+"{{baseName}}"+"}", _neturl.PathEscape(parameterToString(r.{{paramName}}, "{{collectionFormat}}")), -1){{/pathParams}}
localVarHeaderParams := make(map[string]string) localVarHeaderParams := make(map[string]string)
localVarQueryParams := _neturl.Values{} localVarQueryParams := _neturl.Values{}
@ -171,15 +188,15 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
if reflect.TypeOf(t).Kind() == reflect.Slice { if reflect.TypeOf(t).Kind() == reflect.Slice {
s := reflect.ValueOf(t) s := reflect.ValueOf(t)
for i := 0; i < s.Len(); i++ { for i := 0; i < s.Len(); i++ {
localVarQueryParams.Add("{{baseName}}", parameterToString(s.Index(i), "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(s.Index(i), "{{collectionFormat}}"))
} }
} else { } else {
localVarQueryParams.Add("{{baseName}}", parameterToString(t, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(t, "{{collectionFormat}}"))
} }
} }
{{/isCollectionFormatMulti}} {{/isCollectionFormatMulti}}
{{^isCollectionFormatMulti}} {{^isCollectionFormatMulti}}
localVarQueryParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{collectionFormat}}"))
{{/isCollectionFormatMulti}} {{/isCollectionFormatMulti}}
{{/required}} {{/required}}
{{^required}} {{^required}}
@ -189,14 +206,14 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
if reflect.TypeOf(t).Kind() == reflect.Slice { if reflect.TypeOf(t).Kind() == reflect.Slice {
s := reflect.ValueOf(t) s := reflect.ValueOf(t)
for i := 0; i < s.Len(); i++ { for i := 0; i < s.Len(); i++ {
localVarQueryParams.Add("{{baseName}}", parameterToString(s.Index(i), "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(s.Index(i), "{{collectionFormat}}"))
} }
} else { } else {
localVarQueryParams.Add("{{baseName}}", parameterToString(t, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(t, "{{collectionFormat}}"))
} }
{{/isCollectionFormatMulti}} {{/isCollectionFormatMulti}}
{{^isCollectionFormatMulti}} {{^isCollectionFormatMulti}}
localVarQueryParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarQueryParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{collectionFormat}}"))
{{/isCollectionFormatMulti}} {{/isCollectionFormatMulti}}
} }
{{/required}} {{/required}}
@ -224,11 +241,11 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
} }
{{#headerParams}} {{#headerParams}}
{{#required}} {{#required}}
localVarHeaderParams["{{baseName}}"] = parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}") localVarHeaderParams["{{baseName}}"] = parameterToString(*r.{{paramName}}, "{{collectionFormat}}")
{{/required}} {{/required}}
{{^required}} {{^required}}
if r.{{paramName}} != nil { if r.{{paramName}} != nil {
localVarHeaderParams["{{baseName}}"] = parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}") localVarHeaderParams["{{baseName}}"] = parameterToString(*r.{{paramName}}, "{{collectionFormat}}")
} }
{{/required}} {{/required}}
{{/headerParams}} {{/headerParams}}
@ -253,7 +270,7 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
{{/isFile}} {{/isFile}}
{{^isFile}} {{^isFile}}
{{#required}} {{#required}}
localVarFormParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarFormParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{collectionFormat}}"))
{{/required}} {{/required}}
{{^required}} {{^required}}
{{#isModel}} {{#isModel}}
@ -267,7 +284,7 @@ func (a *{{{classname}}}Service) {{nickname}}Execute(r {{#structPrefix}}{{&class
{{/isModel}} {{/isModel}}
{{^isModel}} {{^isModel}}
if r.{{paramName}} != nil { if r.{{paramName}} != nil {
localVarFormParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{#collectionFormat}}{{collectionFormat}}{{/collectionFormat}}")) localVarFormParams.Add("{{baseName}}", parameterToString(*r.{{paramName}}, "{{collectionFormat}}"))
} }
{{/isModel}} {{/isModel}}
{{/required}} {{/required}}

View File

@ -1,12 +1,12 @@
# {{invokerPackage}}\{{classname}}{{#description}} # {{invokerPackage}}\{{classname}}{{#description}}
{{description}}{{/description}} {{.}}{{/description}}
All URIs are relative to *{{basePath}}* All URIs are relative to *{{basePath}}*
Method | HTTP request | Description Method | HTTP request | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
{{#operations}}{{#operation}}[**{{operationId}}**]({{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} {{#operations}}{{#operation}}[**{{operationId}}**]({{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{summary}}
{{/operation}}{{/operations}} {{/operation}}{{/operations}}
{{#operations}} {{#operations}}
@ -60,7 +60,7 @@ func main() {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.{{/-last}}{{/pathParams}}{{#pathParams}} **ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc.{{/-last}}{{/pathParams}}{{#pathParams}}
**{{paramName}}** | {{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{baseType}}.md){{/isFile}}{{/isPrimitiveType}} | {{description}} | {{#defaultValue}}[default to {{defaultValue}}]{{/defaultValue}}{{/pathParams}} **{{paramName}}** | {{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{baseType}}.md){{/isFile}}{{/isPrimitiveType}} | {{description}} | {{#defaultValue}}[default to {{.}}]{{/defaultValue}}{{/pathParams}}
### Other Parameters ### Other Parameters
@ -69,7 +69,7 @@ Other parameters are passed through a pointer to a api{{{nickname}}}Request stru
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}}{{#allParams}} ------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}}{{#allParams}}
{{^isPathParam}} **{{paramName}}** | {{#isContainer}}{{#isArray}}{{#items}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**[]{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/items}}{{/isArray}}{{#isMap}}{{#items}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**map[string]{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/items}}{{/isMap}}{{/isContainer}}{{^isContainer}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/isContainer}} | {{description}} | {{#defaultValue}}[default to {{defaultValue}}]{{/defaultValue}}{{/isPathParam}}{{/allParams}} {{^isPathParam}} **{{paramName}}** | {{#isContainer}}{{#isArray}}{{#items}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**[]{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/items}}{{/isArray}}{{#isMap}}{{#items}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**map[string]{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/items}}{{/isMap}}{{/isContainer}}{{^isContainer}}{{^isPrimitiveType}}{{^isFile}}[{{/isFile}}{{/isPrimitiveType}}**{{dataType}}**{{^isPrimitiveType}}{{^isFile}}]({{^baseType}}{{dataType}}{{/baseType}}{{baseType}}.md){{/isFile}}{{/isPrimitiveType}}{{/isContainer}} | {{description}} | {{#defaultValue}}[default to {{.}}]{{/defaultValue}}{{/isPathParam}}{{/allParams}}
### Return type ### Return type

View File

@ -47,12 +47,7 @@ type APIClient struct {
{{#apis}} {{#apis}}
{{#operations}} {{#operations}}
{{#generateInterfaces}} {{classname}} {{#generateInterfaces}}{{classname}}{{/generateInterfaces}}{{^generateInterfaces}}*{{classname}}Service{{/generateInterfaces}}
{{classname}} {{classname}}
{{/generateInterfaces}}
{{^generateInterfaces}}
{{classname}} *{{classname}}Service
{{/generateInterfaces}}
{{/operations}} {{/operations}}
{{/apis}} {{/apis}}
{{/apiInfo}} {{/apiInfo}}

View File

@ -117,7 +117,7 @@ type Configuration struct {
func NewConfiguration() *Configuration { func NewConfiguration() *Configuration {
cfg := &Configuration{ cfg := &Configuration{
DefaultHeader: make(map[string]string), DefaultHeader: make(map[string]string),
UserAgent: "{{#httpUserAgent}}{{{.}}}{{/httpUserAgent}}{{^httpUserAgent}}OpenAPI-Generator/{{{packageVersion}}}/go{{/httpUserAgent}}", UserAgent: "{{{httpUserAgent}}}{{^httpUserAgent}}OpenAPI-Generator/{{{packageVersion}}}/go{{/httpUserAgent}}",
Debug: false, Debug: false,
{{#servers}} {{#servers}}
{{#-first}} {{#-first}}

View File

@ -1,4 +1,4 @@
// {{classname}}{{#description}} {{{description}}}{{/description}}{{^description}} struct for {{{classname}}}{{/description}} // {{classname}} {{{description}}}{{^description}}struct for {{{classname}}}{{/description}}
type {{classname}} struct { type {{classname}} struct {
{{#anyOf}} {{#anyOf}}
{{{.}}} *{{{.}}} {{{.}}} *{{{.}}}

View File

@ -1,5 +1,5 @@
// {{{classname}}} {{#description}}{{{.}}}{{/description}}{{^description}}the model '{{{classname}}}'{{/description}} // {{{classname}}} {{{description}}}{{^description}}the model '{{{classname}}}'{{/description}}
type {{{classname}}} {{^format}}{{dataType}}{{/format}}{{#format}}{{{format}}}{{/format}} type {{{classname}}} {{{format}}}{{^format}}{{dataType}}{{/format}}
// List of {{{name}}} // List of {{{name}}}
const ( const (
@ -21,7 +21,7 @@ var allowed{{{classname}}}EnumValues = []{{{classname}}}{
} }
func (v *{{{classname}}}) UnmarshalJSON(src []byte) error { func (v *{{{classname}}}) UnmarshalJSON(src []byte) error {
var value {{^format}}{{dataType}}{{/format}}{{#format}}{{{format}}}{{/format}} var value {{{format}}}{{^format}}{{dataType}}{{/format}}
err := json.Unmarshal(src, &value) err := json.Unmarshal(src, &value)
if err != nil { if err != nil {
return err return err
@ -39,7 +39,7 @@ func (v *{{{classname}}}) UnmarshalJSON(src []byte) error {
// New{{{classname}}}FromValue returns a pointer to a valid {{{classname}}} // New{{{classname}}}FromValue returns a pointer to a valid {{{classname}}}
// for the value passed as argument, or an error if the value passed is not allowed by the enum // for the value passed as argument, or an error if the value passed is not allowed by the enum
func New{{{classname}}}FromValue(v {{^format}}{{dataType}}{{/format}}{{#format}}{{{format}}}{{/format}}) (*{{{classname}}}, error) { func New{{{classname}}}FromValue(v {{{format}}}{{^format}}{{dataType}}{{/format}}) (*{{{classname}}}, error) {
ev := {{{classname}}}(v) ev := {{{classname}}}(v)
if ev.IsValid() { if ev.IsValid() {
return &ev, nil return &ev, nil

View File

@ -1,4 +1,4 @@
// {{classname}} - {{#description}}{{{description}}}{{/description}}{{^description}}struct for {{{classname}}}{{/description}} // {{classname}} - {{{description}}}{{^description}}struct for {{{classname}}}{{/description}}
type {{classname}} struct { type {{classname}} struct {
{{#oneOf}} {{#oneOf}}
{{{.}}} *{{{.}}} {{{.}}} *{{{.}}}

View File

@ -1,4 +1,4 @@
// {{classname}}{{#description}} {{{description}}}{{/description}}{{^description}} struct for {{{classname}}}{{/description}} // {{classname}} {{{description}}}{{^description}}struct for {{{classname}}}{{/description}}
type {{classname}} struct { type {{classname}} struct {
{{#parent}} {{#parent}}
{{^isMap}} {{^isMap}}
@ -16,6 +16,9 @@ type {{classname}} struct {
{{#description}} {{#description}}
// {{{description}}} // {{{description}}}
{{/description}} {{/description}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
{{name}} {{^required}}{{^isNullable}}*{{/isNullable}}{{/required}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#withXml}} xml:"{{baseName}}{{#isXmlAttribute}},attr{{/isXmlAttribute}}"{{/withXml}}{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}` {{name}} {{^required}}{{^isNullable}}*{{/isNullable}}{{/required}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#withXml}} xml:"{{baseName}}{{#isXmlAttribute}},attr{{/isXmlAttribute}}"{{/withXml}}{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}`
{{/vars}} {{/vars}}
{{#isAdditionalPropertiesTrue}} {{#isAdditionalPropertiesTrue}}
@ -84,6 +87,9 @@ func New{{classname}}WithDefaults() *{{classname}} {
{{#isNullable}} {{#isNullable}}
// If the value is explicit nil, the zero value for {{vendorExtensions.x-go-base-type}} will be returned // If the value is explicit nil, the zero value for {{vendorExtensions.x-go-base-type}} will be returned
{{/isNullable}} {{/isNullable}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} { func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} {
if o == nil{{#isNullable}}{{^vendorExtensions.x-golang-is-container}} || o.{{name}}.Get() == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} { if o == nil{{#isNullable}}{{^vendorExtensions.x-golang-is-container}} || o.{{name}}.Get() == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} {
var ret {{vendorExtensions.x-go-base-type}} var ret {{vendorExtensions.x-go-base-type}}
@ -108,6 +114,9 @@ func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} {
{{#isNullable}} {{#isNullable}}
// NOTE: If the value is an explicit nil, `nil, true` will be returned // NOTE: If the value is an explicit nil, `nil, true` will be returned
{{/isNullable}} {{/isNullable}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Get{{name}}Ok() (*{{vendorExtensions.x-go-base-type}}, bool) { func (o *{{classname}}) Get{{name}}Ok() (*{{vendorExtensions.x-go-base-type}}, bool) {
if o == nil {{#isNullable}}{{#vendorExtensions.x-golang-is-container}}|| o.{{name}} == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} { if o == nil {{#isNullable}}{{#vendorExtensions.x-golang-is-container}}|| o.{{name}} == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} {
return nil, false return nil, false
@ -126,6 +135,9 @@ func (o *{{classname}}) Get{{name}}Ok() (*{{vendorExtensions.x-go-base-type}}, b
} }
// Set{{name}} sets field value // Set{{name}} sets field value
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Set{{name}}(v {{vendorExtensions.x-go-base-type}}) { func (o *{{classname}}) Set{{name}}(v {{vendorExtensions.x-go-base-type}}) {
{{#isNullable}} {{#isNullable}}
{{#vendorExtensions.x-golang-is-container}} {{#vendorExtensions.x-golang-is-container}}
@ -143,6 +155,9 @@ func (o *{{classname}}) Set{{name}}(v {{vendorExtensions.x-go-base-type}}) {
{{/required}} {{/required}}
{{^required}} {{^required}}
// Get{{name}} returns the {{name}} field value if set, zero value otherwise{{#isNullable}} (both if not set or set to explicit null){{/isNullable}}. // Get{{name}} returns the {{name}} field value if set, zero value otherwise{{#isNullable}} (both if not set or set to explicit null){{/isNullable}}.
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} { func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} {
if o == nil {{^isNullable}}|| o.{{name}} == nil{{/isNullable}}{{#isNullable}}{{^vendorExtensions.x-golang-is-container}}|| o.{{name}}.Get() == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} { if o == nil {{^isNullable}}|| o.{{name}} == nil{{/isNullable}}{{#isNullable}}{{^vendorExtensions.x-golang-is-container}}|| o.{{name}}.Get() == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} {
var ret {{vendorExtensions.x-go-base-type}} var ret {{vendorExtensions.x-go-base-type}}
@ -166,6 +181,9 @@ func (o *{{classname}}) Get{{name}}() {{vendorExtensions.x-go-base-type}} {
{{#isNullable}} {{#isNullable}}
// NOTE: If the value is an explicit nil, `nil, true` will be returned // NOTE: If the value is an explicit nil, `nil, true` will be returned
{{/isNullable}} {{/isNullable}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Get{{name}}Ok() (*{{vendorExtensions.x-go-base-type}}, bool) { func (o *{{classname}}) Get{{name}}Ok() (*{{vendorExtensions.x-go-base-type}}, bool) {
if o == nil {{^isNullable}}|| o.{{name}} == nil{{/isNullable}}{{#isNullable}}{{#vendorExtensions.x-golang-is-container}}|| o.{{name}} == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} { if o == nil {{^isNullable}}|| o.{{name}} == nil{{/isNullable}}{{#isNullable}}{{#vendorExtensions.x-golang-is-container}}|| o.{{name}} == nil{{/vendorExtensions.x-golang-is-container}}{{/isNullable}} {
return nil, false return nil, false
@ -193,6 +211,9 @@ func (o *{{classname}}) Has{{name}}() bool {
} }
// Set{{name}} gets a reference to the given {{dataType}} and assigns it to the {{name}} field. // Set{{name}} gets a reference to the given {{dataType}} and assigns it to the {{name}} field.
{{#deprecated}}
// Deprecated
{{/deprecated}}
func (o *{{classname}}) Set{{name}}(v {{vendorExtensions.x-go-base-type}}) { func (o *{{classname}}) Set{{name}}(v {{vendorExtensions.x-go-base-type}}) {
{{#isNullable}} {{#isNullable}}
{{#vendorExtensions.x-golang-is-container}} {{#vendorExtensions.x-golang-is-container}}
@ -286,6 +307,9 @@ func (o *{{{classname}}}) UnmarshalJSON(bytes []byte) (err error) {
{{#description}} {{#description}}
// {{{description}}} // {{{description}}}
{{/description}} {{/description}}
{{#deprecated}}
// Deprecated
{{/deprecated}}
{{name}} {{^required}}{{^isNullable}}*{{/isNullable}}{{/required}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#withXml}} xml:"{{baseName}}{{#isXmlAttribute}},attr{{/isXmlAttribute}}"{{/withXml}}{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}` {{name}} {{^required}}{{^isNullable}}*{{/isNullable}}{{/required}}{{{dataType}}} `json:"{{baseName}}{{^required}},omitempty{{/required}}"{{#withXml}} xml:"{{baseName}}{{#isXmlAttribute}},attr{{/isXmlAttribute}}"{{/withXml}}{{#vendorExtensions.x-go-custom-tag}} {{{.}}}{{/vendorExtensions.x-go-custom-tag}}`
{{/vars}} {{/vars}}
} }

View File

@ -1,18 +1,18 @@
/* /*
{{#appName}} {{#appName}}
* {{{appName}}} {{{.}}}
*
{{/appName}} {{/appName}}
{{#appDescription}} {{#appDescription}}
* {{{appDescription}}} {{{.}}}
*
{{/appDescription}} {{/appDescription}}
{{#version}} {{#version}}
* API version: {{{version}}} API version: {{{.}}}
{{/version}} {{/version}}
{{#infoEmail}} {{#infoEmail}}
* Contact: {{{infoEmail}}} Contact: {{{.}}}
{{/infoEmail}} {{/infoEmail}}
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1252,6 +1252,7 @@ definitions:
status: status:
type: string type: string
description: pet status in the store description: pet status in the store
deprecated: true
enum: enum:
- available - available
- pending - pending

View File

@ -83,6 +83,7 @@ paths:
required: true required: true
style: form style: form
explode: false explode: false
deprecated: true
schema: schema:
type: array type: array
items: items:
@ -1346,6 +1347,7 @@ components:
status: status:
type: string type: string
description: pet status in the store description: pet status in the store
deprecated: true
enum: enum:
- available - available
- pending - pending

View File

@ -85,6 +85,7 @@ paths:
required: true required: true
style: form style: form
explode: false explode: false
deprecated: true
schema: schema:
type: array type: array
items: items:
@ -716,6 +717,7 @@ components:
status: status:
type: string type: string
description: pet status in the store description: pet status in the store
deprecated: true
enum: enum:
- available - available
- pending - pending

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -26,17 +26,17 @@ var (
type AnotherFakeApi interface { type AnotherFakeApi interface {
/* /*
* Call123TestSpecialTags To test special tags Call123TestSpecialTags To test special tags
* To test special tags and operation ID starting with number
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test special tags and operation ID starting with number
* @return ApiCall123TestSpecialTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCall123TestSpecialTagsRequest
*/
Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest
/* // Call123TestSpecialTagsExecute executes the request
* Call123TestSpecialTagsExecute executes the request // @return Client
* @return Client
*/
Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error)
} }
@ -49,6 +49,7 @@ type ApiCall123TestSpecialTagsRequest struct {
body *Client body *Client
} }
// client model
func (r ApiCall123TestSpecialTagsRequest) Body(body Client) ApiCall123TestSpecialTagsRequest { func (r ApiCall123TestSpecialTagsRequest) Body(body Client) ApiCall123TestSpecialTagsRequest {
r.body = &body r.body = &body
return r return r
@ -59,11 +60,13 @@ func (r ApiCall123TestSpecialTagsRequest) Execute() (Client, *_nethttp.Response,
} }
/* /*
* Call123TestSpecialTags To test special tags Call123TestSpecialTags To test special tags
* To test special tags and operation ID starting with number
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test special tags and operation ID starting with number
* @return ApiCall123TestSpecialTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCall123TestSpecialTagsRequest
*/
func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest { func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest {
return ApiCall123TestSpecialTagsRequest{ return ApiCall123TestSpecialTagsRequest{
ApiService: a, ApiService: a,
@ -71,10 +74,8 @@ func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) Api
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *AnotherFakeApiService) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) { func (a *AnotherFakeApiService) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -29,190 +29,187 @@ var (
type FakeApi interface { type FakeApi interface {
/* /*
* CreateXmlItem creates an XmlItem CreateXmlItem creates an XmlItem
* this route creates an XmlItem
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). this route creates an XmlItem
* @return ApiCreateXmlItemRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateXmlItemRequest
*/
CreateXmlItem(ctx _context.Context) ApiCreateXmlItemRequest CreateXmlItem(ctx _context.Context) ApiCreateXmlItemRequest
/* // CreateXmlItemExecute executes the request
* CreateXmlItemExecute executes the request
*/
CreateXmlItemExecute(r ApiCreateXmlItemRequest) (*_nethttp.Response, error) CreateXmlItemExecute(r ApiCreateXmlItemRequest) (*_nethttp.Response, error)
/* /*
* FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize
* Test serialization of outer boolean types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer boolean types
* @return ApiFakeOuterBooleanSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterBooleanSerializeRequest
*/
FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest
/* // FakeOuterBooleanSerializeExecute executes the request
* FakeOuterBooleanSerializeExecute executes the request // @return bool
* @return bool
*/
FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error)
/* /*
* FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize
* Test serialization of object with outer number type
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of object with outer number type
* @return ApiFakeOuterCompositeSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterCompositeSerializeRequest
*/
FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest
/* // FakeOuterCompositeSerializeExecute executes the request
* FakeOuterCompositeSerializeExecute executes the request // @return OuterComposite
* @return OuterComposite
*/
FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error)
/* /*
* FakeOuterNumberSerialize Method for FakeOuterNumberSerialize FakeOuterNumberSerialize Method for FakeOuterNumberSerialize
* Test serialization of outer number types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer number types
* @return ApiFakeOuterNumberSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterNumberSerializeRequest
*/
FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest
/* // FakeOuterNumberSerializeExecute executes the request
* FakeOuterNumberSerializeExecute executes the request // @return float32
* @return float32
*/
FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error)
/* /*
* FakeOuterStringSerialize Method for FakeOuterStringSerialize FakeOuterStringSerialize Method for FakeOuterStringSerialize
* Test serialization of outer string types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer string types
* @return ApiFakeOuterStringSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterStringSerializeRequest
*/
FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest
/* // FakeOuterStringSerializeExecute executes the request
* FakeOuterStringSerializeExecute executes the request // @return string
* @return string
*/
FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error)
/* /*
* TestBodyWithFileSchema Method for TestBodyWithFileSchema TestBodyWithFileSchema Method for TestBodyWithFileSchema
* For this test, the body for this request much reference a schema named `File`.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For this test, the body for this request much reference a schema named `File`.
* @return ApiTestBodyWithFileSchemaRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestBodyWithFileSchemaRequest
*/
TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest
/* // TestBodyWithFileSchemaExecute executes the request
* TestBodyWithFileSchemaExecute executes the request
*/
TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error)
/* /*
* TestBodyWithQueryParams Method for TestBodyWithQueryParams TestBodyWithQueryParams Method for TestBodyWithQueryParams
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestBodyWithQueryParamsRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestBodyWithQueryParamsRequest
*/
TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest
/* // TestBodyWithQueryParamsExecute executes the request
* TestBodyWithQueryParamsExecute executes the request
*/
TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error)
/* /*
* TestClientModel To test \"client\" model TestClientModel To test \"client\" model
* To test "client" model
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test "client" model
* @return ApiTestClientModelRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClientModelRequest
*/
TestClientModel(ctx _context.Context) ApiTestClientModelRequest TestClientModel(ctx _context.Context) ApiTestClientModelRequest
/* // TestClientModelExecute executes the request
* TestClientModelExecute executes the request // @return Client
* @return Client
*/
TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error)
/* /*
* TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters
Fake endpoint for testing various parameters
假端點 假端點
偽のエンドポイント 偽のエンドポイント
가짜 엔드 포인트 가짜 엔드 포인트
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestEndpointParametersRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestEndpointParametersRequest
*/
TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest
/* // TestEndpointParametersExecute executes the request
* TestEndpointParametersExecute executes the request
*/
TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error)
/* /*
* TestEnumParameters To test enum parameters TestEnumParameters To test enum parameters
* To test enum parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test enum parameters
* @return ApiTestEnumParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestEnumParametersRequest
*/
TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest
/* // TestEnumParametersExecute executes the request
* TestEnumParametersExecute executes the request
*/
TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error)
/* /*
* TestGroupParameters Fake endpoint to test group parameters (optional) TestGroupParameters Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Fake endpoint to test group parameters (optional)
* @return ApiTestGroupParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestGroupParametersRequest
*/
TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest
/* // TestGroupParametersExecute executes the request
* TestGroupParametersExecute executes the request
*/
TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error)
/* /*
* TestInlineAdditionalProperties test inline additionalProperties TestInlineAdditionalProperties test inline additionalProperties
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestInlineAdditionalPropertiesRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestInlineAdditionalPropertiesRequest
*/
TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest
/* // TestInlineAdditionalPropertiesExecute executes the request
* TestInlineAdditionalPropertiesExecute executes the request
*/
TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error)
/* /*
* TestJsonFormData test json serialization of form data TestJsonFormData test json serialization of form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestJsonFormDataRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestJsonFormDataRequest
*/
TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest
/* // TestJsonFormDataExecute executes the request
* TestJsonFormDataExecute executes the request
*/
TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error)
/* /*
* TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat
* To test the collection format in query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test the collection format in query parameters
* @return ApiTestQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestQueryParameterCollectionFormatRequest
*/
TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest
/* // TestQueryParameterCollectionFormatExecute executes the request
* TestQueryParameterCollectionFormatExecute executes the request
*/
TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error)
} }
@ -225,6 +222,7 @@ type ApiCreateXmlItemRequest struct {
xmlItem *XmlItem xmlItem *XmlItem
} }
// XmlItem Body
func (r ApiCreateXmlItemRequest) XmlItem(xmlItem XmlItem) ApiCreateXmlItemRequest { func (r ApiCreateXmlItemRequest) XmlItem(xmlItem XmlItem) ApiCreateXmlItemRequest {
r.xmlItem = &xmlItem r.xmlItem = &xmlItem
return r return r
@ -235,11 +233,13 @@ func (r ApiCreateXmlItemRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* CreateXmlItem creates an XmlItem CreateXmlItem creates an XmlItem
* this route creates an XmlItem
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). this route creates an XmlItem
* @return ApiCreateXmlItemRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateXmlItemRequest
*/
func (a *FakeApiService) CreateXmlItem(ctx _context.Context) ApiCreateXmlItemRequest { func (a *FakeApiService) CreateXmlItem(ctx _context.Context) ApiCreateXmlItemRequest {
return ApiCreateXmlItemRequest{ return ApiCreateXmlItemRequest{
ApiService: a, ApiService: a,
@ -247,9 +247,7 @@ func (a *FakeApiService) CreateXmlItem(ctx _context.Context) ApiCreateXmlItemReq
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) CreateXmlItemExecute(r ApiCreateXmlItemRequest) (*_nethttp.Response, error) { func (a *FakeApiService) CreateXmlItemExecute(r ApiCreateXmlItemRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -326,6 +324,7 @@ type ApiFakeOuterBooleanSerializeRequest struct {
body *bool body *bool
} }
// Input boolean as post body
func (r ApiFakeOuterBooleanSerializeRequest) Body(body bool) ApiFakeOuterBooleanSerializeRequest { func (r ApiFakeOuterBooleanSerializeRequest) Body(body bool) ApiFakeOuterBooleanSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -336,11 +335,13 @@ func (r ApiFakeOuterBooleanSerializeRequest) Execute() (bool, *_nethttp.Response
} }
/* /*
* FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize
* Test serialization of outer boolean types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer boolean types
* @return ApiFakeOuterBooleanSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterBooleanSerializeRequest
*/
func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest { func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest {
return ApiFakeOuterBooleanSerializeRequest{ return ApiFakeOuterBooleanSerializeRequest{
ApiService: a, ApiService: a,
@ -348,10 +349,8 @@ func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFake
} }
} }
/* // Execute executes the request
* Execute executes the request // @return bool
* @return bool
*/
func (a *FakeApiService) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -435,6 +434,7 @@ type ApiFakeOuterCompositeSerializeRequest struct {
body *OuterComposite body *OuterComposite
} }
// Input composite as post body
func (r ApiFakeOuterCompositeSerializeRequest) Body(body OuterComposite) ApiFakeOuterCompositeSerializeRequest { func (r ApiFakeOuterCompositeSerializeRequest) Body(body OuterComposite) ApiFakeOuterCompositeSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -445,11 +445,13 @@ func (r ApiFakeOuterCompositeSerializeRequest) Execute() (OuterComposite, *_neth
} }
/* /*
* FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize
* Test serialization of object with outer number type
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of object with outer number type
* @return ApiFakeOuterCompositeSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterCompositeSerializeRequest
*/
func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest { func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest {
return ApiFakeOuterCompositeSerializeRequest{ return ApiFakeOuterCompositeSerializeRequest{
ApiService: a, ApiService: a,
@ -457,10 +459,8 @@ func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFa
} }
} }
/* // Execute executes the request
* Execute executes the request // @return OuterComposite
* @return OuterComposite
*/
func (a *FakeApiService) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -544,6 +544,7 @@ type ApiFakeOuterNumberSerializeRequest struct {
body *float32 body *float32
} }
// Input number as post body
func (r ApiFakeOuterNumberSerializeRequest) Body(body float32) ApiFakeOuterNumberSerializeRequest { func (r ApiFakeOuterNumberSerializeRequest) Body(body float32) ApiFakeOuterNumberSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -554,11 +555,13 @@ func (r ApiFakeOuterNumberSerializeRequest) Execute() (float32, *_nethttp.Respon
} }
/* /*
* FakeOuterNumberSerialize Method for FakeOuterNumberSerialize FakeOuterNumberSerialize Method for FakeOuterNumberSerialize
* Test serialization of outer number types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer number types
* @return ApiFakeOuterNumberSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterNumberSerializeRequest
*/
func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest { func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest {
return ApiFakeOuterNumberSerializeRequest{ return ApiFakeOuterNumberSerializeRequest{
ApiService: a, ApiService: a,
@ -566,10 +569,8 @@ func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeO
} }
} }
/* // Execute executes the request
* Execute executes the request // @return float32
* @return float32
*/
func (a *FakeApiService) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -653,6 +654,7 @@ type ApiFakeOuterStringSerializeRequest struct {
body *string body *string
} }
// Input string as post body
func (r ApiFakeOuterStringSerializeRequest) Body(body string) ApiFakeOuterStringSerializeRequest { func (r ApiFakeOuterStringSerializeRequest) Body(body string) ApiFakeOuterStringSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -663,11 +665,13 @@ func (r ApiFakeOuterStringSerializeRequest) Execute() (string, *_nethttp.Respons
} }
/* /*
* FakeOuterStringSerialize Method for FakeOuterStringSerialize FakeOuterStringSerialize Method for FakeOuterStringSerialize
* Test serialization of outer string types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer string types
* @return ApiFakeOuterStringSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterStringSerializeRequest
*/
func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest { func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest {
return ApiFakeOuterStringSerializeRequest{ return ApiFakeOuterStringSerializeRequest{
ApiService: a, ApiService: a,
@ -675,10 +679,8 @@ func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeO
} }
} }
/* // Execute executes the request
* Execute executes the request // @return string
* @return string
*/
func (a *FakeApiService) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -772,11 +774,13 @@ func (r ApiTestBodyWithFileSchemaRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestBodyWithFileSchema Method for TestBodyWithFileSchema TestBodyWithFileSchema Method for TestBodyWithFileSchema
* For this test, the body for this request much reference a schema named `File`.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For this test, the body for this request much reference a schema named `File`.
* @return ApiTestBodyWithFileSchemaRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestBodyWithFileSchemaRequest
*/
func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest { func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest {
return ApiTestBodyWithFileSchemaRequest{ return ApiTestBodyWithFileSchemaRequest{
ApiService: a, ApiService: a,
@ -784,9 +788,7 @@ func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBod
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -878,10 +880,11 @@ func (r ApiTestBodyWithQueryParamsRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestBodyWithQueryParams Method for TestBodyWithQueryParams TestBodyWithQueryParams Method for TestBodyWithQueryParams
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestBodyWithQueryParamsRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestBodyWithQueryParamsRequest
*/
func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest { func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest {
return ApiTestBodyWithQueryParamsRequest{ return ApiTestBodyWithQueryParamsRequest{
ApiService: a, ApiService: a,
@ -889,9 +892,7 @@ func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBo
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -972,6 +973,7 @@ type ApiTestClientModelRequest struct {
body *Client body *Client
} }
// client model
func (r ApiTestClientModelRequest) Body(body Client) ApiTestClientModelRequest { func (r ApiTestClientModelRequest) Body(body Client) ApiTestClientModelRequest {
r.body = &body r.body = &body
return r return r
@ -982,11 +984,13 @@ func (r ApiTestClientModelRequest) Execute() (Client, *_nethttp.Response, error)
} }
/* /*
* TestClientModel To test \"client\" model TestClientModel To test \"client\" model
* To test "client" model
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test "client" model
* @return ApiTestClientModelRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClientModelRequest
*/
func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientModelRequest { func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientModelRequest {
return ApiTestClientModelRequest{ return ApiTestClientModelRequest{
ApiService: a, ApiService: a,
@ -994,10 +998,8 @@ func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientMode
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *FakeApiService) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) { func (a *FakeApiService) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch
@ -1097,58 +1099,72 @@ type ApiTestEndpointParametersRequest struct {
callback *string callback *string
} }
// None
func (r ApiTestEndpointParametersRequest) Number(number float32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Number(number float32) ApiTestEndpointParametersRequest {
r.number = &number r.number = &number
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Double(double float64) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Double(double float64) ApiTestEndpointParametersRequest {
r.double = &double r.double = &double
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) PatternWithoutDelimiter(patternWithoutDelimiter string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) PatternWithoutDelimiter(patternWithoutDelimiter string) ApiTestEndpointParametersRequest {
r.patternWithoutDelimiter = &patternWithoutDelimiter r.patternWithoutDelimiter = &patternWithoutDelimiter
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Byte_(byte_ string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Byte_(byte_ string) ApiTestEndpointParametersRequest {
r.byte_ = &byte_ r.byte_ = &byte_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Integer(integer int32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Integer(integer int32) ApiTestEndpointParametersRequest {
r.integer = &integer r.integer = &integer
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Int32_(int32_ int32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Int32_(int32_ int32) ApiTestEndpointParametersRequest {
r.int32_ = &int32_ r.int32_ = &int32_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Int64_(int64_ int64) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Int64_(int64_ int64) ApiTestEndpointParametersRequest {
r.int64_ = &int64_ r.int64_ = &int64_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Float(float float32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Float(float float32) ApiTestEndpointParametersRequest {
r.float = &float r.float = &float
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) String_(string_ string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) String_(string_ string) ApiTestEndpointParametersRequest {
r.string_ = &string_ r.string_ = &string_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Binary(binary *os.File) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Binary(binary *os.File) ApiTestEndpointParametersRequest {
r.binary = &binary r.binary = &binary
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Date(date string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Date(date string) ApiTestEndpointParametersRequest {
r.date = &date r.date = &date
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) DateTime(dateTime time.Time) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) DateTime(dateTime time.Time) ApiTestEndpointParametersRequest {
r.dateTime = &dateTime r.dateTime = &dateTime
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Password(password string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Password(password string) ApiTestEndpointParametersRequest {
r.password = &password r.password = &password
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Callback(callback string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Callback(callback string) ApiTestEndpointParametersRequest {
r.callback = &callback r.callback = &callback
return r return r
@ -1159,14 +1175,16 @@ func (r ApiTestEndpointParametersRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters
Fake endpoint for testing various parameters
假端點 假端點
偽のエンドポイント 偽のエンドポイント
가짜 엔드 포인트 가짜 엔드 포인트
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestEndpointParametersRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestEndpointParametersRequest
*/
func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest { func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest {
return ApiTestEndpointParametersRequest{ return ApiTestEndpointParametersRequest{
ApiService: a, ApiService: a,
@ -1174,9 +1192,7 @@ func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEnd
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1321,34 +1337,42 @@ type ApiTestEnumParametersRequest struct {
enumFormString *string enumFormString *string
} }
// Header parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumHeaderStringArray(enumHeaderStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumHeaderStringArray(enumHeaderStringArray []string) ApiTestEnumParametersRequest {
r.enumHeaderStringArray = &enumHeaderStringArray r.enumHeaderStringArray = &enumHeaderStringArray
return r return r
} }
// Header parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumHeaderString(enumHeaderString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumHeaderString(enumHeaderString string) ApiTestEnumParametersRequest {
r.enumHeaderString = &enumHeaderString r.enumHeaderString = &enumHeaderString
return r return r
} }
// Query parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumQueryStringArray(enumQueryStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryStringArray(enumQueryStringArray []string) ApiTestEnumParametersRequest {
r.enumQueryStringArray = &enumQueryStringArray r.enumQueryStringArray = &enumQueryStringArray
return r return r
} }
// Query parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumQueryString(enumQueryString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryString(enumQueryString string) ApiTestEnumParametersRequest {
r.enumQueryString = &enumQueryString r.enumQueryString = &enumQueryString
return r return r
} }
// Query parameter enum test (double)
func (r ApiTestEnumParametersRequest) EnumQueryInteger(enumQueryInteger int32) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryInteger(enumQueryInteger int32) ApiTestEnumParametersRequest {
r.enumQueryInteger = &enumQueryInteger r.enumQueryInteger = &enumQueryInteger
return r return r
} }
// Query parameter enum test (double)
func (r ApiTestEnumParametersRequest) EnumQueryDouble(enumQueryDouble float64) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryDouble(enumQueryDouble float64) ApiTestEnumParametersRequest {
r.enumQueryDouble = &enumQueryDouble r.enumQueryDouble = &enumQueryDouble
return r return r
} }
// Form parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumFormStringArray(enumFormStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumFormStringArray(enumFormStringArray []string) ApiTestEnumParametersRequest {
r.enumFormStringArray = &enumFormStringArray r.enumFormStringArray = &enumFormStringArray
return r return r
} }
// Form parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumFormString(enumFormString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumFormString(enumFormString string) ApiTestEnumParametersRequest {
r.enumFormString = &enumFormString r.enumFormString = &enumFormString
return r return r
@ -1359,11 +1383,13 @@ func (r ApiTestEnumParametersRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestEnumParameters To test enum parameters TestEnumParameters To test enum parameters
* To test enum parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test enum parameters
* @return ApiTestEnumParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestEnumParametersRequest
*/
func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest { func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest {
return ApiTestEnumParametersRequest{ return ApiTestEnumParametersRequest{
ApiService: a, ApiService: a,
@ -1371,9 +1397,7 @@ func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumPar
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -1474,26 +1498,32 @@ type ApiTestGroupParametersRequest struct {
int64Group *int64 int64Group *int64
} }
// Required String in group parameters
func (r ApiTestGroupParametersRequest) RequiredStringGroup(requiredStringGroup int32) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredStringGroup(requiredStringGroup int32) ApiTestGroupParametersRequest {
r.requiredStringGroup = &requiredStringGroup r.requiredStringGroup = &requiredStringGroup
return r return r
} }
// Required Boolean in group parameters
func (r ApiTestGroupParametersRequest) RequiredBooleanGroup(requiredBooleanGroup bool) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredBooleanGroup(requiredBooleanGroup bool) ApiTestGroupParametersRequest {
r.requiredBooleanGroup = &requiredBooleanGroup r.requiredBooleanGroup = &requiredBooleanGroup
return r return r
} }
// Required Integer in group parameters
func (r ApiTestGroupParametersRequest) RequiredInt64Group(requiredInt64Group int64) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredInt64Group(requiredInt64Group int64) ApiTestGroupParametersRequest {
r.requiredInt64Group = &requiredInt64Group r.requiredInt64Group = &requiredInt64Group
return r return r
} }
// String in group parameters
func (r ApiTestGroupParametersRequest) StringGroup(stringGroup int32) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) StringGroup(stringGroup int32) ApiTestGroupParametersRequest {
r.stringGroup = &stringGroup r.stringGroup = &stringGroup
return r return r
} }
// Boolean in group parameters
func (r ApiTestGroupParametersRequest) BooleanGroup(booleanGroup bool) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) BooleanGroup(booleanGroup bool) ApiTestGroupParametersRequest {
r.booleanGroup = &booleanGroup r.booleanGroup = &booleanGroup
return r return r
} }
// Integer in group parameters
func (r ApiTestGroupParametersRequest) Int64Group(int64Group int64) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) Int64Group(int64Group int64) ApiTestGroupParametersRequest {
r.int64Group = &int64Group r.int64Group = &int64Group
return r return r
@ -1504,11 +1534,13 @@ func (r ApiTestGroupParametersRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestGroupParameters Fake endpoint to test group parameters (optional) TestGroupParameters Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Fake endpoint to test group parameters (optional)
* @return ApiTestGroupParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestGroupParametersRequest
*/
func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest { func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest {
return ApiTestGroupParametersRequest{ return ApiTestGroupParametersRequest{
ApiService: a, ApiService: a,
@ -1516,9 +1548,7 @@ func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupP
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -1611,6 +1641,7 @@ type ApiTestInlineAdditionalPropertiesRequest struct {
param *map[string]string param *map[string]string
} }
// request body
func (r ApiTestInlineAdditionalPropertiesRequest) Param(param map[string]string) ApiTestInlineAdditionalPropertiesRequest { func (r ApiTestInlineAdditionalPropertiesRequest) Param(param map[string]string) ApiTestInlineAdditionalPropertiesRequest {
r.param = &param r.param = &param
return r return r
@ -1621,10 +1652,11 @@ func (r ApiTestInlineAdditionalPropertiesRequest) Execute() (*_nethttp.Response,
} }
/* /*
* TestInlineAdditionalProperties test inline additionalProperties TestInlineAdditionalProperties test inline additionalProperties
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestInlineAdditionalPropertiesRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestInlineAdditionalPropertiesRequest
*/
func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest { func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest {
return ApiTestInlineAdditionalPropertiesRequest{ return ApiTestInlineAdditionalPropertiesRequest{
ApiService: a, ApiService: a,
@ -1632,9 +1664,7 @@ func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) Ap
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1712,10 +1742,12 @@ type ApiTestJsonFormDataRequest struct {
param2 *string param2 *string
} }
// field1
func (r ApiTestJsonFormDataRequest) Param(param string) ApiTestJsonFormDataRequest { func (r ApiTestJsonFormDataRequest) Param(param string) ApiTestJsonFormDataRequest {
r.param = &param r.param = &param
return r return r
} }
// field2
func (r ApiTestJsonFormDataRequest) Param2(param2 string) ApiTestJsonFormDataRequest { func (r ApiTestJsonFormDataRequest) Param2(param2 string) ApiTestJsonFormDataRequest {
r.param2 = &param2 r.param2 = &param2
return r return r
@ -1726,10 +1758,11 @@ func (r ApiTestJsonFormDataRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestJsonFormData test json serialization of form data TestJsonFormData test json serialization of form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestJsonFormDataRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestJsonFormDataRequest
*/
func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest { func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest {
return ApiTestJsonFormDataRequest{ return ApiTestJsonFormDataRequest{
ApiService: a, ApiService: a,
@ -1737,9 +1770,7 @@ func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormD
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -1849,11 +1880,13 @@ func (r ApiTestQueryParameterCollectionFormatRequest) Execute() (*_nethttp.Respo
} }
/* /*
* TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat
* To test the collection format in query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test the collection format in query parameters
* @return ApiTestQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestQueryParameterCollectionFormatRequest
*/
func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest { func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest {
return ApiTestQueryParameterCollectionFormatRequest{ return ApiTestQueryParameterCollectionFormatRequest{
ApiService: a, ApiService: a,
@ -1861,9 +1894,7 @@ func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -26,17 +26,17 @@ var (
type FakeClassnameTags123Api interface { type FakeClassnameTags123Api interface {
/* /*
* TestClassname To test class name in snake case TestClassname To test class name in snake case
* To test class name in snake case
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test class name in snake case
* @return ApiTestClassnameRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClassnameRequest
*/
TestClassname(ctx _context.Context) ApiTestClassnameRequest TestClassname(ctx _context.Context) ApiTestClassnameRequest
/* // TestClassnameExecute executes the request
* TestClassnameExecute executes the request // @return Client
* @return Client
*/
TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error)
} }
@ -49,6 +49,7 @@ type ApiTestClassnameRequest struct {
body *Client body *Client
} }
// client model
func (r ApiTestClassnameRequest) Body(body Client) ApiTestClassnameRequest { func (r ApiTestClassnameRequest) Body(body Client) ApiTestClassnameRequest {
r.body = &body r.body = &body
return r return r
@ -59,11 +60,13 @@ func (r ApiTestClassnameRequest) Execute() (Client, *_nethttp.Response, error) {
} }
/* /*
* TestClassname To test class name in snake case TestClassname To test class name in snake case
* To test class name in snake case
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test class name in snake case
* @return ApiTestClassnameRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClassnameRequest
*/
func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) ApiTestClassnameRequest { func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) ApiTestClassnameRequest {
return ApiTestClassnameRequest{ return ApiTestClassnameRequest{
ApiService: a, ApiService: a,
@ -71,10 +74,8 @@ func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) Api
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *FakeClassnameTags123ApiService) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) { func (a *FakeClassnameTags123ApiService) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -28,124 +28,121 @@ var (
type PetApi interface { type PetApi interface {
/* /*
* AddPet Add a new pet to the store AddPet Add a new pet to the store
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiAddPetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiAddPetRequest
*/
AddPet(ctx _context.Context) ApiAddPetRequest AddPet(ctx _context.Context) ApiAddPetRequest
/* // AddPetExecute executes the request
* AddPetExecute executes the request
*/
AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error)
/* /*
* DeletePet Deletes a pet DeletePet Deletes a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId Pet id to delete @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiDeletePetRequest @param petId Pet id to delete
*/ @return ApiDeletePetRequest
*/
DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest
/* // DeletePetExecute executes the request
* DeletePetExecute executes the request
*/
DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error)
/* /*
* FindPetsByStatus Finds Pets by status FindPetsByStatus Finds Pets by status
* Multiple status values can be provided with comma separated strings
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple status values can be provided with comma separated strings
* @return ApiFindPetsByStatusRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByStatusRequest
*/
FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest
/* // FindPetsByStatusExecute executes the request
* FindPetsByStatusExecute executes the request // @return []Pet
* @return []Pet
*/
FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error)
/* /*
* FindPetsByTags Finds Pets by tags FindPetsByTags Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @return ApiFindPetsByTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByTagsRequest
Deprecated
*/
FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest
/* // FindPetsByTagsExecute executes the request
* FindPetsByTagsExecute executes the request // @return []Pet
* @return []Pet // Deprecated
*/
FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error)
/* /*
* GetPetById Find pet by ID GetPetById Find pet by ID
* Returns a single pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a single pet
* @param petId ID of pet to return
* @return ApiGetPetByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param petId ID of pet to return
@return ApiGetPetByIdRequest
*/
GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest
/* // GetPetByIdExecute executes the request
* GetPetByIdExecute executes the request // @return Pet
* @return Pet
*/
GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error)
/* /*
* UpdatePet Update an existing pet UpdatePet Update an existing pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiUpdatePetRequest
*/
UpdatePet(ctx _context.Context) ApiUpdatePetRequest UpdatePet(ctx _context.Context) ApiUpdatePetRequest
/* // UpdatePetExecute executes the request
* UpdatePetExecute executes the request
*/
UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error)
/* /*
* UpdatePetWithForm Updates a pet in the store with form data UpdatePetWithForm Updates a pet in the store with form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet that needs to be updated @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetWithFormRequest @param petId ID of pet that needs to be updated
*/ @return ApiUpdatePetWithFormRequest
*/
UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest
/* // UpdatePetWithFormExecute executes the request
* UpdatePetWithFormExecute executes the request
*/
UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error)
/* /*
* UploadFile uploads an image UploadFile uploads an image
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileRequest
*/
UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest
/* // UploadFileExecute executes the request
* UploadFileExecute executes the request // @return ApiResponse
* @return ApiResponse
*/
UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error)
/* /*
* UploadFileWithRequiredFile uploads an image (required) UploadFileWithRequiredFile uploads an image (required)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileWithRequiredFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileWithRequiredFileRequest
*/
UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest
/* // UploadFileWithRequiredFileExecute executes the request
* UploadFileWithRequiredFileExecute executes the request // @return ApiResponse
* @return ApiResponse
*/
UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error)
} }
@ -158,6 +155,7 @@ type ApiAddPetRequest struct {
body *Pet body *Pet
} }
// Pet object that needs to be added to the store
func (r ApiAddPetRequest) Body(body Pet) ApiAddPetRequest { func (r ApiAddPetRequest) Body(body Pet) ApiAddPetRequest {
r.body = &body r.body = &body
return r return r
@ -168,10 +166,11 @@ func (r ApiAddPetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* AddPet Add a new pet to the store AddPet Add a new pet to the store
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiAddPetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiAddPetRequest
*/
func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest { func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest {
return ApiAddPetRequest{ return ApiAddPetRequest{
ApiService: a, ApiService: a,
@ -179,9 +178,7 @@ func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) { func (a *PetApiService) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -269,11 +266,12 @@ func (r ApiDeletePetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeletePet Deletes a pet DeletePet Deletes a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId Pet id to delete @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiDeletePetRequest @param petId Pet id to delete
*/ @return ApiDeletePetRequest
*/
func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest { func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest {
return ApiDeletePetRequest{ return ApiDeletePetRequest{
ApiService: a, ApiService: a,
@ -282,9 +280,7 @@ func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePe
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) { func (a *PetApiService) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -360,6 +356,7 @@ type ApiFindPetsByStatusRequest struct {
status *[]string status *[]string
} }
// Status values that need to be considered for filter
func (r ApiFindPetsByStatusRequest) Status(status []string) ApiFindPetsByStatusRequest { func (r ApiFindPetsByStatusRequest) Status(status []string) ApiFindPetsByStatusRequest {
r.status = &status r.status = &status
return r return r
@ -370,11 +367,13 @@ func (r ApiFindPetsByStatusRequest) Execute() ([]Pet, *_nethttp.Response, error)
} }
/* /*
* FindPetsByStatus Finds Pets by status FindPetsByStatus Finds Pets by status
* Multiple status values can be provided with comma separated strings
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple status values can be provided with comma separated strings
* @return ApiFindPetsByStatusRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByStatusRequest
*/
func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest { func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest {
return ApiFindPetsByStatusRequest{ return ApiFindPetsByStatusRequest{
ApiService: a, ApiService: a,
@ -382,10 +381,8 @@ func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStat
} }
} }
/* // Execute executes the request
* Execute executes the request // @return []Pet
* @return []Pet
*/
func (a *PetApiService) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) { func (a *PetApiService) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -471,6 +468,7 @@ type ApiFindPetsByTagsRequest struct {
tags *[]string tags *[]string
} }
// Tags to filter by
func (r ApiFindPetsByTagsRequest) Tags(tags []string) ApiFindPetsByTagsRequest { func (r ApiFindPetsByTagsRequest) Tags(tags []string) ApiFindPetsByTagsRequest {
r.tags = &tags r.tags = &tags
return r return r
@ -481,11 +479,15 @@ func (r ApiFindPetsByTagsRequest) Execute() ([]Pet, *_nethttp.Response, error) {
} }
/* /*
* FindPetsByTags Finds Pets by tags FindPetsByTags Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @return ApiFindPetsByTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByTagsRequest
Deprecated
*/
func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest { func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest {
return ApiFindPetsByTagsRequest{ return ApiFindPetsByTagsRequest{
ApiService: a, ApiService: a,
@ -493,10 +495,9 @@ func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRe
} }
} }
/* // Execute executes the request
* Execute executes the request // @return []Pet
* @return []Pet // Deprecated
*/
func (a *PetApiService) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) { func (a *PetApiService) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -588,12 +589,14 @@ func (r ApiGetPetByIdRequest) Execute() (Pet, *_nethttp.Response, error) {
} }
/* /*
* GetPetById Find pet by ID GetPetById Find pet by ID
* Returns a single pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a single pet
* @param petId ID of pet to return
* @return ApiGetPetByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param petId ID of pet to return
@return ApiGetPetByIdRequest
*/
func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest { func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest {
return ApiGetPetByIdRequest{ return ApiGetPetByIdRequest{
ApiService: a, ApiService: a,
@ -602,10 +605,8 @@ func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetB
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Pet
* @return Pet
*/
func (a *PetApiService) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) { func (a *PetApiService) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -702,6 +703,7 @@ type ApiUpdatePetRequest struct {
body *Pet body *Pet
} }
// Pet object that needs to be added to the store
func (r ApiUpdatePetRequest) Body(body Pet) ApiUpdatePetRequest { func (r ApiUpdatePetRequest) Body(body Pet) ApiUpdatePetRequest {
r.body = &body r.body = &body
return r return r
@ -712,10 +714,11 @@ func (r ApiUpdatePetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdatePet Update an existing pet UpdatePet Update an existing pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiUpdatePetRequest
*/
func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest { func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest {
return ApiUpdatePetRequest{ return ApiUpdatePetRequest{
ApiService: a, ApiService: a,
@ -723,9 +726,7 @@ func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) { func (a *PetApiService) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -804,10 +805,12 @@ type ApiUpdatePetWithFormRequest struct {
status *string status *string
} }
// Updated name of the pet
func (r ApiUpdatePetWithFormRequest) Name(name string) ApiUpdatePetWithFormRequest { func (r ApiUpdatePetWithFormRequest) Name(name string) ApiUpdatePetWithFormRequest {
r.name = &name r.name = &name
return r return r
} }
// Updated status of the pet
func (r ApiUpdatePetWithFormRequest) Status(status string) ApiUpdatePetWithFormRequest { func (r ApiUpdatePetWithFormRequest) Status(status string) ApiUpdatePetWithFormRequest {
r.status = &status r.status = &status
return r return r
@ -818,11 +821,12 @@ func (r ApiUpdatePetWithFormRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdatePetWithForm Updates a pet in the store with form data UpdatePetWithForm Updates a pet in the store with form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet that needs to be updated @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetWithFormRequest @param petId ID of pet that needs to be updated
*/ @return ApiUpdatePetWithFormRequest
*/
func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest { func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest {
return ApiUpdatePetWithFormRequest{ return ApiUpdatePetWithFormRequest{
ApiService: a, ApiService: a,
@ -831,9 +835,7 @@ func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) Api
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) { func (a *PetApiService) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -914,10 +916,12 @@ type ApiUploadFileRequest struct {
file **os.File file **os.File
} }
// Additional data to pass to server
func (r ApiUploadFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileRequest { func (r ApiUploadFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileRequest {
r.additionalMetadata = &additionalMetadata r.additionalMetadata = &additionalMetadata
return r return r
} }
// file to upload
func (r ApiUploadFileRequest) File(file *os.File) ApiUploadFileRequest { func (r ApiUploadFileRequest) File(file *os.File) ApiUploadFileRequest {
r.file = &file r.file = &file
return r return r
@ -928,11 +932,12 @@ func (r ApiUploadFileRequest) Execute() (ApiResponse, *_nethttp.Response, error)
} }
/* /*
* UploadFile uploads an image UploadFile uploads an image
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileRequest
*/
func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest { func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest {
return ApiUploadFileRequest{ return ApiUploadFileRequest{
ApiService: a, ApiService: a,
@ -941,10 +946,8 @@ func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadF
} }
} }
/* // Execute executes the request
* Execute executes the request // @return ApiResponse
* @return ApiResponse
*/
func (a *PetApiService) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) { func (a *PetApiService) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1043,10 +1046,12 @@ type ApiUploadFileWithRequiredFileRequest struct {
additionalMetadata *string additionalMetadata *string
} }
// file to upload
func (r ApiUploadFileWithRequiredFileRequest) RequiredFile(requiredFile *os.File) ApiUploadFileWithRequiredFileRequest { func (r ApiUploadFileWithRequiredFileRequest) RequiredFile(requiredFile *os.File) ApiUploadFileWithRequiredFileRequest {
r.requiredFile = &requiredFile r.requiredFile = &requiredFile
return r return r
} }
// Additional data to pass to server
func (r ApiUploadFileWithRequiredFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileWithRequiredFileRequest { func (r ApiUploadFileWithRequiredFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileWithRequiredFileRequest {
r.additionalMetadata = &additionalMetadata r.additionalMetadata = &additionalMetadata
return r return r
@ -1057,11 +1062,12 @@ func (r ApiUploadFileWithRequiredFileRequest) Execute() (ApiResponse, *_nethttp.
} }
/* /*
* UploadFileWithRequiredFile uploads an image (required) UploadFileWithRequiredFile uploads an image (required)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileWithRequiredFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileWithRequiredFileRequest
*/
func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest { func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest {
return ApiUploadFileWithRequiredFileRequest{ return ApiUploadFileWithRequiredFileRequest{
ApiService: a, ApiService: a,
@ -1070,10 +1076,8 @@ func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId i
} }
} }
/* // Execute executes the request
* Execute executes the request // @return ApiResponse
* @return ApiResponse
*/
func (a *PetApiService) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) { func (a *PetApiService) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -27,59 +27,58 @@ var (
type StoreApi interface { type StoreApi interface {
/* /*
* DeleteOrder Delete purchase order by ID DeleteOrder Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted
* @return ApiDeleteOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of the order that needs to be deleted
@return ApiDeleteOrderRequest
*/
DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest
/* // DeleteOrderExecute executes the request
* DeleteOrderExecute executes the request
*/
DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error)
/* /*
* GetInventory Returns pet inventories by status GetInventory Returns pet inventories by status
* Returns a map of status codes to quantities
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a map of status codes to quantities
* @return ApiGetInventoryRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInventoryRequest
*/
GetInventory(ctx _context.Context) ApiGetInventoryRequest GetInventory(ctx _context.Context) ApiGetInventoryRequest
/* // GetInventoryExecute executes the request
* GetInventoryExecute executes the request // @return map[string]int32
* @return map[string]int32
*/
GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error)
/* /*
* GetOrderById Find purchase order by ID GetOrderById Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched
* @return ApiGetOrderByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of pet that needs to be fetched
@return ApiGetOrderByIdRequest
*/
GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest
/* // GetOrderByIdExecute executes the request
* GetOrderByIdExecute executes the request // @return Order
* @return Order
*/
GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error)
/* /*
* PlaceOrder Place an order for a pet PlaceOrder Place an order for a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiPlaceOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiPlaceOrderRequest
*/
PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest
/* // PlaceOrderExecute executes the request
* PlaceOrderExecute executes the request // @return Order
* @return Order
*/
PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error)
} }
@ -98,12 +97,14 @@ func (r ApiDeleteOrderRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeleteOrder Delete purchase order by ID DeleteOrder Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted
* @return ApiDeleteOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of the order that needs to be deleted
@return ApiDeleteOrderRequest
*/
func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest { func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest {
return ApiDeleteOrderRequest{ return ApiDeleteOrderRequest{
ApiService: a, ApiService: a,
@ -112,9 +113,7 @@ func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiD
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *StoreApiService) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) { func (a *StoreApiService) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -192,11 +191,13 @@ func (r ApiGetInventoryRequest) Execute() (map[string]int32, *_nethttp.Response,
} }
/* /*
* GetInventory Returns pet inventories by status GetInventory Returns pet inventories by status
* Returns a map of status codes to quantities
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a map of status codes to quantities
* @return ApiGetInventoryRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInventoryRequest
*/
func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequest { func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequest {
return ApiGetInventoryRequest{ return ApiGetInventoryRequest{
ApiService: a, ApiService: a,
@ -204,10 +205,8 @@ func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequ
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]int32
* @return map[string]int32
*/
func (a *StoreApiService) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) { func (a *StoreApiService) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -309,12 +308,14 @@ func (r ApiGetOrderByIdRequest) Execute() (Order, *_nethttp.Response, error) {
} }
/* /*
* GetOrderById Find purchase order by ID GetOrderById Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched
* @return ApiGetOrderByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of pet that needs to be fetched
@return ApiGetOrderByIdRequest
*/
func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest { func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest {
return ApiGetOrderByIdRequest{ return ApiGetOrderByIdRequest{
ApiService: a, ApiService: a,
@ -323,10 +324,8 @@ func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiG
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Order
* @return Order
*/
func (a *StoreApiService) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) { func (a *StoreApiService) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -415,6 +414,7 @@ type ApiPlaceOrderRequest struct {
body *Order body *Order
} }
// order placed for purchasing the pet
func (r ApiPlaceOrderRequest) Body(body Order) ApiPlaceOrderRequest { func (r ApiPlaceOrderRequest) Body(body Order) ApiPlaceOrderRequest {
r.body = &body r.body = &body
return r return r
@ -425,10 +425,11 @@ func (r ApiPlaceOrderRequest) Execute() (Order, *_nethttp.Response, error) {
} }
/* /*
* PlaceOrder Place an order for a pet PlaceOrder Place an order for a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiPlaceOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiPlaceOrderRequest
*/
func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest { func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest {
return ApiPlaceOrderRequest{ return ApiPlaceOrderRequest{
ApiService: a, ApiService: a,
@ -436,10 +437,8 @@ func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Order
* @return Order
*/
func (a *StoreApiService) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) { func (a *StoreApiService) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -27,107 +27,102 @@ var (
type UserApi interface { type UserApi interface {
/* /*
* CreateUser Create user CreateUser Create user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @return ApiCreateUserRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest
*/
CreateUser(ctx _context.Context) ApiCreateUserRequest CreateUser(ctx _context.Context) ApiCreateUserRequest
/* // CreateUserExecute executes the request
* CreateUserExecute executes the request
*/
CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error)
/* /*
* CreateUsersWithArrayInput Creates list of users with given input array CreateUsersWithArrayInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithArrayInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithArrayInputRequest
*/
CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest
/* // CreateUsersWithArrayInputExecute executes the request
* CreateUsersWithArrayInputExecute executes the request
*/
CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error)
/* /*
* CreateUsersWithListInput Creates list of users with given input array CreateUsersWithListInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithListInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithListInputRequest
*/
CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest
/* // CreateUsersWithListInputExecute executes the request
* CreateUsersWithListInputExecute executes the request
*/
CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error)
/* /*
* DeleteUser Delete user DeleteUser Delete user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username The name that needs to be deleted
* @return ApiDeleteUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username The name that needs to be deleted
@return ApiDeleteUserRequest
*/
DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest
/* // DeleteUserExecute executes the request
* DeleteUserExecute executes the request
*/
DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error)
/* /*
* GetUserByName Get user by user name GetUserByName Get user by user name
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param username The name that needs to be fetched. Use user1 for testing. @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiGetUserByNameRequest @param username The name that needs to be fetched. Use user1 for testing.
*/ @return ApiGetUserByNameRequest
*/
GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest
/* // GetUserByNameExecute executes the request
* GetUserByNameExecute executes the request // @return User
* @return User
*/
GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error)
/* /*
* LoginUser Logs user into the system LoginUser Logs user into the system
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLoginUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLoginUserRequest
*/
LoginUser(ctx _context.Context) ApiLoginUserRequest LoginUser(ctx _context.Context) ApiLoginUserRequest
/* // LoginUserExecute executes the request
* LoginUserExecute executes the request // @return string
* @return string
*/
LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error)
/* /*
* LogoutUser Logs out current logged in user session LogoutUser Logs out current logged in user session
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLogoutUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLogoutUserRequest
*/
LogoutUser(ctx _context.Context) ApiLogoutUserRequest LogoutUser(ctx _context.Context) ApiLogoutUserRequest
/* // LogoutUserExecute executes the request
* LogoutUserExecute executes the request
*/
LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error)
/* /*
* UpdateUser Updated user UpdateUser Updated user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username name that need to be deleted
* @return ApiUpdateUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username name that need to be deleted
@return ApiUpdateUserRequest
*/
UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest
/* // UpdateUserExecute executes the request
* UpdateUserExecute executes the request
*/
UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error)
} }
@ -140,6 +135,7 @@ type ApiCreateUserRequest struct {
body *User body *User
} }
// Created user object
func (r ApiCreateUserRequest) Body(body User) ApiCreateUserRequest { func (r ApiCreateUserRequest) Body(body User) ApiCreateUserRequest {
r.body = &body r.body = &body
return r return r
@ -150,11 +146,13 @@ func (r ApiCreateUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* CreateUser Create user CreateUser Create user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @return ApiCreateUserRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest
*/
func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest { func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest {
return ApiCreateUserRequest{ return ApiCreateUserRequest{
ApiService: a, ApiService: a,
@ -162,9 +160,7 @@ func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -241,6 +237,7 @@ type ApiCreateUsersWithArrayInputRequest struct {
body *[]User body *[]User
} }
// List of user object
func (r ApiCreateUsersWithArrayInputRequest) Body(body []User) ApiCreateUsersWithArrayInputRequest { func (r ApiCreateUsersWithArrayInputRequest) Body(body []User) ApiCreateUsersWithArrayInputRequest {
r.body = &body r.body = &body
return r return r
@ -251,10 +248,11 @@ func (r ApiCreateUsersWithArrayInputRequest) Execute() (*_nethttp.Response, erro
} }
/* /*
* CreateUsersWithArrayInput Creates list of users with given input array CreateUsersWithArrayInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithArrayInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithArrayInputRequest
*/
func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest { func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest {
return ApiCreateUsersWithArrayInputRequest{ return ApiCreateUsersWithArrayInputRequest{
ApiService: a, ApiService: a,
@ -262,9 +260,7 @@ func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCrea
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -341,6 +337,7 @@ type ApiCreateUsersWithListInputRequest struct {
body *[]User body *[]User
} }
// List of user object
func (r ApiCreateUsersWithListInputRequest) Body(body []User) ApiCreateUsersWithListInputRequest { func (r ApiCreateUsersWithListInputRequest) Body(body []User) ApiCreateUsersWithListInputRequest {
r.body = &body r.body = &body
return r return r
@ -351,10 +348,11 @@ func (r ApiCreateUsersWithListInputRequest) Execute() (*_nethttp.Response, error
} }
/* /*
* CreateUsersWithListInput Creates list of users with given input array CreateUsersWithListInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithListInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithListInputRequest
*/
func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest { func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest {
return ApiCreateUsersWithListInputRequest{ return ApiCreateUsersWithListInputRequest{
ApiService: a, ApiService: a,
@ -362,9 +360,7 @@ func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreat
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -447,12 +443,14 @@ func (r ApiDeleteUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeleteUser Delete user DeleteUser Delete user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username The name that needs to be deleted
* @return ApiDeleteUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username The name that needs to be deleted
@return ApiDeleteUserRequest
*/
func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest { func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest {
return ApiDeleteUserRequest{ return ApiDeleteUserRequest{
ApiService: a, ApiService: a,
@ -461,9 +459,7 @@ func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDe
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -542,11 +538,12 @@ func (r ApiGetUserByNameRequest) Execute() (User, *_nethttp.Response, error) {
} }
/* /*
* GetUserByName Get user by user name GetUserByName Get user by user name
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param username The name that needs to be fetched. Use user1 for testing. @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiGetUserByNameRequest @param username The name that needs to be fetched. Use user1 for testing.
*/ @return ApiGetUserByNameRequest
*/
func (a *UserApiService) GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest { func (a *UserApiService) GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest {
return ApiGetUserByNameRequest{ return ApiGetUserByNameRequest{
ApiService: a, ApiService: a,
@ -555,10 +552,8 @@ func (a *UserApiService) GetUserByName(ctx _context.Context, username string) Ap
} }
} }
/* // Execute executes the request
* Execute executes the request // @return User
* @return User
*/
func (a *UserApiService) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) { func (a *UserApiService) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -642,10 +637,12 @@ type ApiLoginUserRequest struct {
password *string password *string
} }
// The user name for login
func (r ApiLoginUserRequest) Username(username string) ApiLoginUserRequest { func (r ApiLoginUserRequest) Username(username string) ApiLoginUserRequest {
r.username = &username r.username = &username
return r return r
} }
// The password for login in clear text
func (r ApiLoginUserRequest) Password(password string) ApiLoginUserRequest { func (r ApiLoginUserRequest) Password(password string) ApiLoginUserRequest {
r.password = &password r.password = &password
return r return r
@ -656,10 +653,11 @@ func (r ApiLoginUserRequest) Execute() (string, *_nethttp.Response, error) {
} }
/* /*
* LoginUser Logs user into the system LoginUser Logs user into the system
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLoginUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLoginUserRequest
*/
func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest { func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest {
return ApiLoginUserRequest{ return ApiLoginUserRequest{
ApiService: a, ApiService: a,
@ -667,10 +665,8 @@ func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request // @return string
* @return string
*/
func (a *UserApiService) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) { func (a *UserApiService) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -765,10 +761,11 @@ func (r ApiLogoutUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* LogoutUser Logs out current logged in user session LogoutUser Logs out current logged in user session
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLogoutUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLogoutUserRequest
*/
func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest { func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest {
return ApiLogoutUserRequest{ return ApiLogoutUserRequest{
ApiService: a, ApiService: a,
@ -776,9 +773,7 @@ func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -851,6 +846,7 @@ type ApiUpdateUserRequest struct {
body *User body *User
} }
// Updated user object
func (r ApiUpdateUserRequest) Body(body User) ApiUpdateUserRequest { func (r ApiUpdateUserRequest) Body(body User) ApiUpdateUserRequest {
r.body = &body r.body = &body
return r return r
@ -861,12 +857,14 @@ func (r ApiUpdateUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdateUser Updated user UpdateUser Updated user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username name that need to be deleted
* @return ApiUpdateUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username name that need to be deleted
@return ApiUpdateUserRequest
*/
func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest { func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest {
return ApiUpdateUserRequest{ return ApiUpdateUserRequest{
ApiService: a, ApiService: a,
@ -875,9 +873,7 @@ func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUp
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1101,6 +1101,7 @@ export interface Pet {
* pet status in the store * pet status in the store
* @type {string} * @type {string}
* @memberof Pet * @memberof Pet
* @deprecated
*/ */
status?: PetStatusEnum; status?: PetStatusEnum;
} }

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Extension x-auth-id-alias OpenAPI Extension x-auth-id-alias
*
* This specification shows how to use x-auth-id-alias extension for API keys. This specification shows how to use x-auth-id-alias extension for API keys.
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -37,11 +37,13 @@ func (r ApiAnyKeyRequest) Execute() (map[string]interface{}, *_nethttp.Response,
} }
/* /*
* AnyKey Use any API key AnyKey Use any API key
* Use any API key
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Use any API key
* @return ApiAnyKeyRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAnyKeyRequest
*/
func (a *UsageApiService) AnyKey(ctx _context.Context) ApiAnyKeyRequest { func (a *UsageApiService) AnyKey(ctx _context.Context) ApiAnyKeyRequest {
return ApiAnyKeyRequest{ return ApiAnyKeyRequest{
ApiService: a, ApiService: a,
@ -49,10 +51,8 @@ func (a *UsageApiService) AnyKey(ctx _context.Context) ApiAnyKeyRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]interface{}
* @return map[string]interface{}
*/
func (a *UsageApiService) AnyKeyExecute(r ApiAnyKeyRequest) (map[string]interface{}, *_nethttp.Response, error) { func (a *UsageApiService) AnyKeyExecute(r ApiAnyKeyRequest) (map[string]interface{}, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -167,11 +167,13 @@ func (r ApiBothKeysRequest) Execute() (map[string]interface{}, *_nethttp.Respons
} }
/* /*
* BothKeys Use both API keys BothKeys Use both API keys
* Use both API keys
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Use both API keys
* @return ApiBothKeysRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiBothKeysRequest
*/
func (a *UsageApiService) BothKeys(ctx _context.Context) ApiBothKeysRequest { func (a *UsageApiService) BothKeys(ctx _context.Context) ApiBothKeysRequest {
return ApiBothKeysRequest{ return ApiBothKeysRequest{
ApiService: a, ApiService: a,
@ -179,10 +181,8 @@ func (a *UsageApiService) BothKeys(ctx _context.Context) ApiBothKeysRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]interface{}
* @return map[string]interface{}
*/
func (a *UsageApiService) BothKeysExecute(r ApiBothKeysRequest) (map[string]interface{}, *_nethttp.Response, error) { func (a *UsageApiService) BothKeysExecute(r ApiBothKeysRequest) (map[string]interface{}, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -297,11 +297,13 @@ func (r ApiKeyInHeaderRequest) Execute() (map[string]interface{}, *_nethttp.Resp
} }
/* /*
* KeyInHeader Use API key in header KeyInHeader Use API key in header
* Use API key in header
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Use API key in header
* @return ApiKeyInHeaderRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyInHeaderRequest
*/
func (a *UsageApiService) KeyInHeader(ctx _context.Context) ApiKeyInHeaderRequest { func (a *UsageApiService) KeyInHeader(ctx _context.Context) ApiKeyInHeaderRequest {
return ApiKeyInHeaderRequest{ return ApiKeyInHeaderRequest{
ApiService: a, ApiService: a,
@ -309,10 +311,8 @@ func (a *UsageApiService) KeyInHeader(ctx _context.Context) ApiKeyInHeaderReques
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]interface{}
* @return map[string]interface{}
*/
func (a *UsageApiService) KeyInHeaderExecute(r ApiKeyInHeaderRequest) (map[string]interface{}, *_nethttp.Response, error) { func (a *UsageApiService) KeyInHeaderExecute(r ApiKeyInHeaderRequest) (map[string]interface{}, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -413,11 +413,13 @@ func (r ApiKeyInQueryRequest) Execute() (map[string]interface{}, *_nethttp.Respo
} }
/* /*
* KeyInQuery Use API key in query KeyInQuery Use API key in query
* Use API key in query
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Use API key in query
* @return ApiKeyInQueryRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyInQueryRequest
*/
func (a *UsageApiService) KeyInQuery(ctx _context.Context) ApiKeyInQueryRequest { func (a *UsageApiService) KeyInQuery(ctx _context.Context) ApiKeyInQueryRequest {
return ApiKeyInQueryRequest{ return ApiKeyInQueryRequest{
ApiService: a, ApiService: a,
@ -425,10 +427,8 @@ func (a *UsageApiService) KeyInQuery(ctx _context.Context) ApiKeyInQueryRequest
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]interface{}
* @return map[string]interface{}
*/
func (a *UsageApiService) KeyInQueryExecute(r ApiKeyInQueryRequest) (map[string]interface{}, *_nethttp.Response, error) { func (a *UsageApiService) KeyInQueryExecute(r ApiKeyInQueryRequest) (map[string]interface{}, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Extension x-auth-id-alias OpenAPI Extension x-auth-id-alias
*
* This specification shows how to use x-auth-id-alias extension for API keys. This specification shows how to use x-auth-id-alias extension for API keys.
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Extension x-auth-id-alias OpenAPI Extension x-auth-id-alias
*
* This specification shows how to use x-auth-id-alias extension for API keys. This specification shows how to use x-auth-id-alias extension for API keys.
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Extension x-auth-id-alias OpenAPI Extension x-auth-id-alias
*
* This specification shows how to use x-auth-id-alias extension for API keys. This specification shows how to use x-auth-id-alias extension for API keys.
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Extension x-auth-id-alias OpenAPI Extension x-auth-id-alias
*
* This specification shows how to use x-auth-id-alias extension for API keys. This specification shows how to use x-auth-id-alias extension for API keys.
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -93,7 +93,8 @@ paths:
description: Multiple status values can be provided with comma separated strings description: Multiple status values can be provided with comma separated strings
operationId: findPetsByStatus operationId: findPetsByStatus
parameters: parameters:
- description: Status values that need to be considered for filter - deprecated: true
description: Status values that need to be considered for filter
explode: false explode: false
in: query in: query
name: status name: status
@ -1440,6 +1441,7 @@ components:
name: tag name: tag
wrapped: true wrapped: true
status: status:
deprecated: true
description: pet status in the store description: pet status in the store
enum: enum:
- available - available

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -26,17 +26,17 @@ var (
type AnotherFakeApi interface { type AnotherFakeApi interface {
/* /*
* Call123TestSpecialTags To test special tags Call123TestSpecialTags To test special tags
* To test special tags and operation ID starting with number
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test special tags and operation ID starting with number
* @return ApiCall123TestSpecialTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCall123TestSpecialTagsRequest
*/
Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest
/* // Call123TestSpecialTagsExecute executes the request
* Call123TestSpecialTagsExecute executes the request // @return Client
* @return Client
*/
Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error)
} }
@ -49,6 +49,7 @@ type ApiCall123TestSpecialTagsRequest struct {
client *Client client *Client
} }
// client model
func (r ApiCall123TestSpecialTagsRequest) Client(client Client) ApiCall123TestSpecialTagsRequest { func (r ApiCall123TestSpecialTagsRequest) Client(client Client) ApiCall123TestSpecialTagsRequest {
r.client = &client r.client = &client
return r return r
@ -59,11 +60,13 @@ func (r ApiCall123TestSpecialTagsRequest) Execute() (Client, *_nethttp.Response,
} }
/* /*
* Call123TestSpecialTags To test special tags Call123TestSpecialTags To test special tags
* To test special tags and operation ID starting with number
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test special tags and operation ID starting with number
* @return ApiCall123TestSpecialTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCall123TestSpecialTagsRequest
*/
func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest { func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) ApiCall123TestSpecialTagsRequest {
return ApiCall123TestSpecialTagsRequest{ return ApiCall123TestSpecialTagsRequest{
ApiService: a, ApiService: a,
@ -71,10 +74,8 @@ func (a *AnotherFakeApiService) Call123TestSpecialTags(ctx _context.Context) Api
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *AnotherFakeApiService) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) { func (a *AnotherFakeApiService) Call123TestSpecialTagsExecute(r ApiCall123TestSpecialTagsRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -26,16 +26,15 @@ var (
type DefaultApi interface { type DefaultApi interface {
/* /*
* FooGet Method for FooGet FooGet Method for FooGet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiFooGetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiFooGetRequest
*/
FooGet(ctx _context.Context) ApiFooGetRequest FooGet(ctx _context.Context) ApiFooGetRequest
/* // FooGetExecute executes the request
* FooGetExecute executes the request // @return InlineResponseDefault
* @return InlineResponseDefault
*/
FooGetExecute(r ApiFooGetRequest) (InlineResponseDefault, *_nethttp.Response, error) FooGetExecute(r ApiFooGetRequest) (InlineResponseDefault, *_nethttp.Response, error)
} }
@ -53,10 +52,11 @@ func (r ApiFooGetRequest) Execute() (InlineResponseDefault, *_nethttp.Response,
} }
/* /*
* FooGet Method for FooGet FooGet Method for FooGet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiFooGetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiFooGetRequest
*/
func (a *DefaultApiService) FooGet(ctx _context.Context) ApiFooGetRequest { func (a *DefaultApiService) FooGet(ctx _context.Context) ApiFooGetRequest {
return ApiFooGetRequest{ return ApiFooGetRequest{
ApiService: a, ApiService: a,
@ -64,10 +64,8 @@ func (a *DefaultApiService) FooGet(ctx _context.Context) ApiFooGetRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request // @return InlineResponseDefault
* @return InlineResponseDefault
*/
func (a *DefaultApiService) FooGetExecute(r ApiFooGetRequest) (InlineResponseDefault, *_nethttp.Response, error) { func (a *DefaultApiService) FooGetExecute(r ApiFooGetRequest) (InlineResponseDefault, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -29,205 +29,201 @@ var (
type FakeApi interface { type FakeApi interface {
/* /*
* FakeHealthGet Health check endpoint FakeHealthGet Health check endpoint
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiFakeHealthGetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiFakeHealthGetRequest
*/
FakeHealthGet(ctx _context.Context) ApiFakeHealthGetRequest FakeHealthGet(ctx _context.Context) ApiFakeHealthGetRequest
/* // FakeHealthGetExecute executes the request
* FakeHealthGetExecute executes the request // @return HealthCheckResult
* @return HealthCheckResult
*/
FakeHealthGetExecute(r ApiFakeHealthGetRequest) (HealthCheckResult, *_nethttp.Response, error) FakeHealthGetExecute(r ApiFakeHealthGetRequest) (HealthCheckResult, *_nethttp.Response, error)
/* /*
* FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize
* Test serialization of outer boolean types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer boolean types
* @return ApiFakeOuterBooleanSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterBooleanSerializeRequest
*/
FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest
/* // FakeOuterBooleanSerializeExecute executes the request
* FakeOuterBooleanSerializeExecute executes the request // @return bool
* @return bool
*/
FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error)
/* /*
* FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize
* Test serialization of object with outer number type
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of object with outer number type
* @return ApiFakeOuterCompositeSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterCompositeSerializeRequest
*/
FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest
/* // FakeOuterCompositeSerializeExecute executes the request
* FakeOuterCompositeSerializeExecute executes the request // @return OuterComposite
* @return OuterComposite
*/
FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error)
/* /*
* FakeOuterNumberSerialize Method for FakeOuterNumberSerialize FakeOuterNumberSerialize Method for FakeOuterNumberSerialize
* Test serialization of outer number types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer number types
* @return ApiFakeOuterNumberSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterNumberSerializeRequest
*/
FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest
/* // FakeOuterNumberSerializeExecute executes the request
* FakeOuterNumberSerializeExecute executes the request // @return float32
* @return float32
*/
FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error)
/* /*
* FakeOuterStringSerialize Method for FakeOuterStringSerialize FakeOuterStringSerialize Method for FakeOuterStringSerialize
* Test serialization of outer string types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer string types
* @return ApiFakeOuterStringSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterStringSerializeRequest
*/
FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest
/* // FakeOuterStringSerializeExecute executes the request
* FakeOuterStringSerializeExecute executes the request // @return string
* @return string
*/
FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error)
/* /*
* TestBodyWithFileSchema Method for TestBodyWithFileSchema TestBodyWithFileSchema Method for TestBodyWithFileSchema
* For this test, the body for this request much reference a schema named `File`.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For this test, the body for this request much reference a schema named `File`.
* @return ApiTestBodyWithFileSchemaRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestBodyWithFileSchemaRequest
*/
TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest
/* // TestBodyWithFileSchemaExecute executes the request
* TestBodyWithFileSchemaExecute executes the request
*/
TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error)
/* /*
* TestBodyWithQueryParams Method for TestBodyWithQueryParams TestBodyWithQueryParams Method for TestBodyWithQueryParams
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestBodyWithQueryParamsRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestBodyWithQueryParamsRequest
*/
TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest
/* // TestBodyWithQueryParamsExecute executes the request
* TestBodyWithQueryParamsExecute executes the request
*/
TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error)
/* /*
* TestClientModel To test \"client\" model TestClientModel To test \"client\" model
* To test "client" model
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test "client" model
* @return ApiTestClientModelRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClientModelRequest
*/
TestClientModel(ctx _context.Context) ApiTestClientModelRequest TestClientModel(ctx _context.Context) ApiTestClientModelRequest
/* // TestClientModelExecute executes the request
* TestClientModelExecute executes the request // @return Client
* @return Client
*/
TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error)
/* /*
* TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters
Fake endpoint for testing various parameters
假端點 假端點
偽のエンドポイント 偽のエンドポイント
가짜 엔드 포인트 가짜 엔드 포인트
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestEndpointParametersRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestEndpointParametersRequest
*/
TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest
/* // TestEndpointParametersExecute executes the request
* TestEndpointParametersExecute executes the request
*/
TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error)
/* /*
* TestEnumParameters To test enum parameters TestEnumParameters To test enum parameters
* To test enum parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test enum parameters
* @return ApiTestEnumParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestEnumParametersRequest
*/
TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest
/* // TestEnumParametersExecute executes the request
* TestEnumParametersExecute executes the request
*/
TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error)
/* /*
* TestGroupParameters Fake endpoint to test group parameters (optional) TestGroupParameters Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Fake endpoint to test group parameters (optional)
* @return ApiTestGroupParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestGroupParametersRequest
*/
TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest
/* // TestGroupParametersExecute executes the request
* TestGroupParametersExecute executes the request
*/
TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error)
/* /*
* TestInlineAdditionalProperties test inline additionalProperties TestInlineAdditionalProperties test inline additionalProperties
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestInlineAdditionalPropertiesRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestInlineAdditionalPropertiesRequest
*/
TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest
/* // TestInlineAdditionalPropertiesExecute executes the request
* TestInlineAdditionalPropertiesExecute executes the request
*/
TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error)
/* /*
* TestJsonFormData test json serialization of form data TestJsonFormData test json serialization of form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestJsonFormDataRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestJsonFormDataRequest
*/
TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest
/* // TestJsonFormDataExecute executes the request
* TestJsonFormDataExecute executes the request
*/
TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error)
/* /*
* TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat
* To test the collection format in query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test the collection format in query parameters
* @return ApiTestQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestQueryParameterCollectionFormatRequest
*/
TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest
/* // TestQueryParameterCollectionFormatExecute executes the request
* TestQueryParameterCollectionFormatExecute executes the request
*/
TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error)
/* /*
* TestUniqueItemsHeaderAndQueryParameterCollectionFormat Method for TestUniqueItemsHeaderAndQueryParameterCollectionFormat TestUniqueItemsHeaderAndQueryParameterCollectionFormat Method for TestUniqueItemsHeaderAndQueryParameterCollectionFormat
* To test unique items in header and query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test unique items in header and query parameters
* @return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest
*/
TestUniqueItemsHeaderAndQueryParameterCollectionFormat(ctx _context.Context) ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest TestUniqueItemsHeaderAndQueryParameterCollectionFormat(ctx _context.Context) ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest
/* // TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute executes the request
* TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute executes the request // @return []Pet
* @return []Pet
*/
TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute(r ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest) ([]Pet, *_nethttp.Response, error) TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute(r ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest) ([]Pet, *_nethttp.Response, error)
} }
@ -245,10 +241,11 @@ func (r ApiFakeHealthGetRequest) Execute() (HealthCheckResult, *_nethttp.Respons
} }
/* /*
* FakeHealthGet Health check endpoint FakeHealthGet Health check endpoint
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiFakeHealthGetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiFakeHealthGetRequest
*/
func (a *FakeApiService) FakeHealthGet(ctx _context.Context) ApiFakeHealthGetRequest { func (a *FakeApiService) FakeHealthGet(ctx _context.Context) ApiFakeHealthGetRequest {
return ApiFakeHealthGetRequest{ return ApiFakeHealthGetRequest{
ApiService: a, ApiService: a,
@ -256,10 +253,8 @@ func (a *FakeApiService) FakeHealthGet(ctx _context.Context) ApiFakeHealthGetReq
} }
} }
/* // Execute executes the request
* Execute executes the request // @return HealthCheckResult
* @return HealthCheckResult
*/
func (a *FakeApiService) FakeHealthGetExecute(r ApiFakeHealthGetRequest) (HealthCheckResult, *_nethttp.Response, error) { func (a *FakeApiService) FakeHealthGetExecute(r ApiFakeHealthGetRequest) (HealthCheckResult, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -341,6 +336,7 @@ type ApiFakeOuterBooleanSerializeRequest struct {
body *bool body *bool
} }
// Input boolean as post body
func (r ApiFakeOuterBooleanSerializeRequest) Body(body bool) ApiFakeOuterBooleanSerializeRequest { func (r ApiFakeOuterBooleanSerializeRequest) Body(body bool) ApiFakeOuterBooleanSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -351,11 +347,13 @@ func (r ApiFakeOuterBooleanSerializeRequest) Execute() (bool, *_nethttp.Response
} }
/* /*
* FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize FakeOuterBooleanSerialize Method for FakeOuterBooleanSerialize
* Test serialization of outer boolean types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer boolean types
* @return ApiFakeOuterBooleanSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterBooleanSerializeRequest
*/
func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest { func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFakeOuterBooleanSerializeRequest {
return ApiFakeOuterBooleanSerializeRequest{ return ApiFakeOuterBooleanSerializeRequest{
ApiService: a, ApiService: a,
@ -363,10 +361,8 @@ func (a *FakeApiService) FakeOuterBooleanSerialize(ctx _context.Context) ApiFake
} }
} }
/* // Execute executes the request
* Execute executes the request // @return bool
* @return bool
*/
func (a *FakeApiService) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterBooleanSerializeExecute(r ApiFakeOuterBooleanSerializeRequest) (bool, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -450,6 +446,7 @@ type ApiFakeOuterCompositeSerializeRequest struct {
outerComposite *OuterComposite outerComposite *OuterComposite
} }
// Input composite as post body
func (r ApiFakeOuterCompositeSerializeRequest) OuterComposite(outerComposite OuterComposite) ApiFakeOuterCompositeSerializeRequest { func (r ApiFakeOuterCompositeSerializeRequest) OuterComposite(outerComposite OuterComposite) ApiFakeOuterCompositeSerializeRequest {
r.outerComposite = &outerComposite r.outerComposite = &outerComposite
return r return r
@ -460,11 +457,13 @@ func (r ApiFakeOuterCompositeSerializeRequest) Execute() (OuterComposite, *_neth
} }
/* /*
* FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize FakeOuterCompositeSerialize Method for FakeOuterCompositeSerialize
* Test serialization of object with outer number type
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of object with outer number type
* @return ApiFakeOuterCompositeSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterCompositeSerializeRequest
*/
func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest { func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFakeOuterCompositeSerializeRequest {
return ApiFakeOuterCompositeSerializeRequest{ return ApiFakeOuterCompositeSerializeRequest{
ApiService: a, ApiService: a,
@ -472,10 +471,8 @@ func (a *FakeApiService) FakeOuterCompositeSerialize(ctx _context.Context) ApiFa
} }
} }
/* // Execute executes the request
* Execute executes the request // @return OuterComposite
* @return OuterComposite
*/
func (a *FakeApiService) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterCompositeSerializeExecute(r ApiFakeOuterCompositeSerializeRequest) (OuterComposite, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -559,6 +556,7 @@ type ApiFakeOuterNumberSerializeRequest struct {
body *float32 body *float32
} }
// Input number as post body
func (r ApiFakeOuterNumberSerializeRequest) Body(body float32) ApiFakeOuterNumberSerializeRequest { func (r ApiFakeOuterNumberSerializeRequest) Body(body float32) ApiFakeOuterNumberSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -569,11 +567,13 @@ func (r ApiFakeOuterNumberSerializeRequest) Execute() (float32, *_nethttp.Respon
} }
/* /*
* FakeOuterNumberSerialize Method for FakeOuterNumberSerialize FakeOuterNumberSerialize Method for FakeOuterNumberSerialize
* Test serialization of outer number types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer number types
* @return ApiFakeOuterNumberSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterNumberSerializeRequest
*/
func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest { func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeOuterNumberSerializeRequest {
return ApiFakeOuterNumberSerializeRequest{ return ApiFakeOuterNumberSerializeRequest{
ApiService: a, ApiService: a,
@ -581,10 +581,8 @@ func (a *FakeApiService) FakeOuterNumberSerialize(ctx _context.Context) ApiFakeO
} }
} }
/* // Execute executes the request
* Execute executes the request // @return float32
* @return float32
*/
func (a *FakeApiService) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterNumberSerializeExecute(r ApiFakeOuterNumberSerializeRequest) (float32, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -668,6 +666,7 @@ type ApiFakeOuterStringSerializeRequest struct {
body *string body *string
} }
// Input string as post body
func (r ApiFakeOuterStringSerializeRequest) Body(body string) ApiFakeOuterStringSerializeRequest { func (r ApiFakeOuterStringSerializeRequest) Body(body string) ApiFakeOuterStringSerializeRequest {
r.body = &body r.body = &body
return r return r
@ -678,11 +677,13 @@ func (r ApiFakeOuterStringSerializeRequest) Execute() (string, *_nethttp.Respons
} }
/* /*
* FakeOuterStringSerialize Method for FakeOuterStringSerialize FakeOuterStringSerialize Method for FakeOuterStringSerialize
* Test serialization of outer string types
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Test serialization of outer string types
* @return ApiFakeOuterStringSerializeRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFakeOuterStringSerializeRequest
*/
func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest { func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeOuterStringSerializeRequest {
return ApiFakeOuterStringSerializeRequest{ return ApiFakeOuterStringSerializeRequest{
ApiService: a, ApiService: a,
@ -690,10 +691,8 @@ func (a *FakeApiService) FakeOuterStringSerialize(ctx _context.Context) ApiFakeO
} }
} }
/* // Execute executes the request
* Execute executes the request // @return string
* @return string
*/
func (a *FakeApiService) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) { func (a *FakeApiService) FakeOuterStringSerializeExecute(r ApiFakeOuterStringSerializeRequest) (string, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -787,11 +786,13 @@ func (r ApiTestBodyWithFileSchemaRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestBodyWithFileSchema Method for TestBodyWithFileSchema TestBodyWithFileSchema Method for TestBodyWithFileSchema
* For this test, the body for this request much reference a schema named `File`.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For this test, the body for this request much reference a schema named `File`.
* @return ApiTestBodyWithFileSchemaRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestBodyWithFileSchemaRequest
*/
func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest { func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBodyWithFileSchemaRequest {
return ApiTestBodyWithFileSchemaRequest{ return ApiTestBodyWithFileSchemaRequest{
ApiService: a, ApiService: a,
@ -799,9 +800,7 @@ func (a *FakeApiService) TestBodyWithFileSchema(ctx _context.Context) ApiTestBod
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestBodyWithFileSchemaExecute(r ApiTestBodyWithFileSchemaRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -893,10 +892,11 @@ func (r ApiTestBodyWithQueryParamsRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestBodyWithQueryParams Method for TestBodyWithQueryParams TestBodyWithQueryParams Method for TestBodyWithQueryParams
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestBodyWithQueryParamsRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestBodyWithQueryParamsRequest
*/
func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest { func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBodyWithQueryParamsRequest {
return ApiTestBodyWithQueryParamsRequest{ return ApiTestBodyWithQueryParamsRequest{
ApiService: a, ApiService: a,
@ -904,9 +904,7 @@ func (a *FakeApiService) TestBodyWithQueryParams(ctx _context.Context) ApiTestBo
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestBodyWithQueryParamsExecute(r ApiTestBodyWithQueryParamsRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -987,6 +985,7 @@ type ApiTestClientModelRequest struct {
client *Client client *Client
} }
// client model
func (r ApiTestClientModelRequest) Client(client Client) ApiTestClientModelRequest { func (r ApiTestClientModelRequest) Client(client Client) ApiTestClientModelRequest {
r.client = &client r.client = &client
return r return r
@ -997,11 +996,13 @@ func (r ApiTestClientModelRequest) Execute() (Client, *_nethttp.Response, error)
} }
/* /*
* TestClientModel To test \"client\" model TestClientModel To test \"client\" model
* To test "client" model
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test "client" model
* @return ApiTestClientModelRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClientModelRequest
*/
func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientModelRequest { func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientModelRequest {
return ApiTestClientModelRequest{ return ApiTestClientModelRequest{
ApiService: a, ApiService: a,
@ -1009,10 +1010,8 @@ func (a *FakeApiService) TestClientModel(ctx _context.Context) ApiTestClientMode
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *FakeApiService) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) { func (a *FakeApiService) TestClientModelExecute(r ApiTestClientModelRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch
@ -1112,58 +1111,72 @@ type ApiTestEndpointParametersRequest struct {
callback *string callback *string
} }
// None
func (r ApiTestEndpointParametersRequest) Number(number float32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Number(number float32) ApiTestEndpointParametersRequest {
r.number = &number r.number = &number
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Double(double float64) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Double(double float64) ApiTestEndpointParametersRequest {
r.double = &double r.double = &double
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) PatternWithoutDelimiter(patternWithoutDelimiter string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) PatternWithoutDelimiter(patternWithoutDelimiter string) ApiTestEndpointParametersRequest {
r.patternWithoutDelimiter = &patternWithoutDelimiter r.patternWithoutDelimiter = &patternWithoutDelimiter
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Byte_(byte_ string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Byte_(byte_ string) ApiTestEndpointParametersRequest {
r.byte_ = &byte_ r.byte_ = &byte_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Integer(integer int32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Integer(integer int32) ApiTestEndpointParametersRequest {
r.integer = &integer r.integer = &integer
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Int32_(int32_ int32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Int32_(int32_ int32) ApiTestEndpointParametersRequest {
r.int32_ = &int32_ r.int32_ = &int32_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Int64_(int64_ int64) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Int64_(int64_ int64) ApiTestEndpointParametersRequest {
r.int64_ = &int64_ r.int64_ = &int64_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Float(float float32) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Float(float float32) ApiTestEndpointParametersRequest {
r.float = &float r.float = &float
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) String_(string_ string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) String_(string_ string) ApiTestEndpointParametersRequest {
r.string_ = &string_ r.string_ = &string_
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Binary(binary *os.File) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Binary(binary *os.File) ApiTestEndpointParametersRequest {
r.binary = &binary r.binary = &binary
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Date(date string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Date(date string) ApiTestEndpointParametersRequest {
r.date = &date r.date = &date
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) DateTime(dateTime time.Time) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) DateTime(dateTime time.Time) ApiTestEndpointParametersRequest {
r.dateTime = &dateTime r.dateTime = &dateTime
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Password(password string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Password(password string) ApiTestEndpointParametersRequest {
r.password = &password r.password = &password
return r return r
} }
// None
func (r ApiTestEndpointParametersRequest) Callback(callback string) ApiTestEndpointParametersRequest { func (r ApiTestEndpointParametersRequest) Callback(callback string) ApiTestEndpointParametersRequest {
r.callback = &callback r.callback = &callback
return r return r
@ -1174,15 +1187,17 @@ func (r ApiTestEndpointParametersRequest) Execute() (*_nethttp.Response, error)
} }
/* /*
* TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 TestEndpointParameters Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters
Fake endpoint for testing various parameters
假端點 假端點
偽のエンドポイント 偽のエンドポイント
가짜 엔드 포인트 가짜 엔드 포인트
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestEndpointParametersRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestEndpointParametersRequest
*/
func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest { func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEndpointParametersRequest {
return ApiTestEndpointParametersRequest{ return ApiTestEndpointParametersRequest{
ApiService: a, ApiService: a,
@ -1190,9 +1205,7 @@ func (a *FakeApiService) TestEndpointParameters(ctx _context.Context) ApiTestEnd
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestEndpointParametersExecute(r ApiTestEndpointParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1337,34 +1350,42 @@ type ApiTestEnumParametersRequest struct {
enumFormString *string enumFormString *string
} }
// Header parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumHeaderStringArray(enumHeaderStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumHeaderStringArray(enumHeaderStringArray []string) ApiTestEnumParametersRequest {
r.enumHeaderStringArray = &enumHeaderStringArray r.enumHeaderStringArray = &enumHeaderStringArray
return r return r
} }
// Header parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumHeaderString(enumHeaderString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumHeaderString(enumHeaderString string) ApiTestEnumParametersRequest {
r.enumHeaderString = &enumHeaderString r.enumHeaderString = &enumHeaderString
return r return r
} }
// Query parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumQueryStringArray(enumQueryStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryStringArray(enumQueryStringArray []string) ApiTestEnumParametersRequest {
r.enumQueryStringArray = &enumQueryStringArray r.enumQueryStringArray = &enumQueryStringArray
return r return r
} }
// Query parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumQueryString(enumQueryString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryString(enumQueryString string) ApiTestEnumParametersRequest {
r.enumQueryString = &enumQueryString r.enumQueryString = &enumQueryString
return r return r
} }
// Query parameter enum test (double)
func (r ApiTestEnumParametersRequest) EnumQueryInteger(enumQueryInteger int32) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryInteger(enumQueryInteger int32) ApiTestEnumParametersRequest {
r.enumQueryInteger = &enumQueryInteger r.enumQueryInteger = &enumQueryInteger
return r return r
} }
// Query parameter enum test (double)
func (r ApiTestEnumParametersRequest) EnumQueryDouble(enumQueryDouble float64) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumQueryDouble(enumQueryDouble float64) ApiTestEnumParametersRequest {
r.enumQueryDouble = &enumQueryDouble r.enumQueryDouble = &enumQueryDouble
return r return r
} }
// Form parameter enum test (string array)
func (r ApiTestEnumParametersRequest) EnumFormStringArray(enumFormStringArray []string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumFormStringArray(enumFormStringArray []string) ApiTestEnumParametersRequest {
r.enumFormStringArray = &enumFormStringArray r.enumFormStringArray = &enumFormStringArray
return r return r
} }
// Form parameter enum test (string)
func (r ApiTestEnumParametersRequest) EnumFormString(enumFormString string) ApiTestEnumParametersRequest { func (r ApiTestEnumParametersRequest) EnumFormString(enumFormString string) ApiTestEnumParametersRequest {
r.enumFormString = &enumFormString r.enumFormString = &enumFormString
return r return r
@ -1375,11 +1396,13 @@ func (r ApiTestEnumParametersRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestEnumParameters To test enum parameters TestEnumParameters To test enum parameters
* To test enum parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test enum parameters
* @return ApiTestEnumParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestEnumParametersRequest
*/
func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest { func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumParametersRequest {
return ApiTestEnumParametersRequest{ return ApiTestEnumParametersRequest{
ApiService: a, ApiService: a,
@ -1387,9 +1410,7 @@ func (a *FakeApiService) TestEnumParameters(ctx _context.Context) ApiTestEnumPar
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestEnumParametersExecute(r ApiTestEnumParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -1498,26 +1519,32 @@ type ApiTestGroupParametersRequest struct {
int64Group *int64 int64Group *int64
} }
// Required String in group parameters
func (r ApiTestGroupParametersRequest) RequiredStringGroup(requiredStringGroup int32) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredStringGroup(requiredStringGroup int32) ApiTestGroupParametersRequest {
r.requiredStringGroup = &requiredStringGroup r.requiredStringGroup = &requiredStringGroup
return r return r
} }
// Required Boolean in group parameters
func (r ApiTestGroupParametersRequest) RequiredBooleanGroup(requiredBooleanGroup bool) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredBooleanGroup(requiredBooleanGroup bool) ApiTestGroupParametersRequest {
r.requiredBooleanGroup = &requiredBooleanGroup r.requiredBooleanGroup = &requiredBooleanGroup
return r return r
} }
// Required Integer in group parameters
func (r ApiTestGroupParametersRequest) RequiredInt64Group(requiredInt64Group int64) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) RequiredInt64Group(requiredInt64Group int64) ApiTestGroupParametersRequest {
r.requiredInt64Group = &requiredInt64Group r.requiredInt64Group = &requiredInt64Group
return r return r
} }
// String in group parameters
func (r ApiTestGroupParametersRequest) StringGroup(stringGroup int32) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) StringGroup(stringGroup int32) ApiTestGroupParametersRequest {
r.stringGroup = &stringGroup r.stringGroup = &stringGroup
return r return r
} }
// Boolean in group parameters
func (r ApiTestGroupParametersRequest) BooleanGroup(booleanGroup bool) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) BooleanGroup(booleanGroup bool) ApiTestGroupParametersRequest {
r.booleanGroup = &booleanGroup r.booleanGroup = &booleanGroup
return r return r
} }
// Integer in group parameters
func (r ApiTestGroupParametersRequest) Int64Group(int64Group int64) ApiTestGroupParametersRequest { func (r ApiTestGroupParametersRequest) Int64Group(int64Group int64) ApiTestGroupParametersRequest {
r.int64Group = &int64Group r.int64Group = &int64Group
return r return r
@ -1528,11 +1555,13 @@ func (r ApiTestGroupParametersRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestGroupParameters Fake endpoint to test group parameters (optional) TestGroupParameters Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Fake endpoint to test group parameters (optional)
* @return ApiTestGroupParametersRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestGroupParametersRequest
*/
func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest { func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupParametersRequest {
return ApiTestGroupParametersRequest{ return ApiTestGroupParametersRequest{
ApiService: a, ApiService: a,
@ -1540,9 +1569,7 @@ func (a *FakeApiService) TestGroupParameters(ctx _context.Context) ApiTestGroupP
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestGroupParametersExecute(r ApiTestGroupParametersRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -1635,6 +1662,7 @@ type ApiTestInlineAdditionalPropertiesRequest struct {
requestBody *map[string]string requestBody *map[string]string
} }
// request body
func (r ApiTestInlineAdditionalPropertiesRequest) RequestBody(requestBody map[string]string) ApiTestInlineAdditionalPropertiesRequest { func (r ApiTestInlineAdditionalPropertiesRequest) RequestBody(requestBody map[string]string) ApiTestInlineAdditionalPropertiesRequest {
r.requestBody = &requestBody r.requestBody = &requestBody
return r return r
@ -1645,10 +1673,11 @@ func (r ApiTestInlineAdditionalPropertiesRequest) Execute() (*_nethttp.Response,
} }
/* /*
* TestInlineAdditionalProperties test inline additionalProperties TestInlineAdditionalProperties test inline additionalProperties
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestInlineAdditionalPropertiesRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestInlineAdditionalPropertiesRequest
*/
func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest { func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) ApiTestInlineAdditionalPropertiesRequest {
return ApiTestInlineAdditionalPropertiesRequest{ return ApiTestInlineAdditionalPropertiesRequest{
ApiService: a, ApiService: a,
@ -1656,9 +1685,7 @@ func (a *FakeApiService) TestInlineAdditionalProperties(ctx _context.Context) Ap
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestInlineAdditionalPropertiesExecute(r ApiTestInlineAdditionalPropertiesRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1736,10 +1763,12 @@ type ApiTestJsonFormDataRequest struct {
param2 *string param2 *string
} }
// field1
func (r ApiTestJsonFormDataRequest) Param(param string) ApiTestJsonFormDataRequest { func (r ApiTestJsonFormDataRequest) Param(param string) ApiTestJsonFormDataRequest {
r.param = &param r.param = &param
return r return r
} }
// field2
func (r ApiTestJsonFormDataRequest) Param2(param2 string) ApiTestJsonFormDataRequest { func (r ApiTestJsonFormDataRequest) Param2(param2 string) ApiTestJsonFormDataRequest {
r.param2 = &param2 r.param2 = &param2
return r return r
@ -1750,10 +1779,11 @@ func (r ApiTestJsonFormDataRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* TestJsonFormData test json serialization of form data TestJsonFormData test json serialization of form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiTestJsonFormDataRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiTestJsonFormDataRequest
*/
func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest { func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormDataRequest {
return ApiTestJsonFormDataRequest{ return ApiTestJsonFormDataRequest{
ApiService: a, ApiService: a,
@ -1761,9 +1791,7 @@ func (a *FakeApiService) TestJsonFormData(ctx _context.Context) ApiTestJsonFormD
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestJsonFormDataExecute(r ApiTestJsonFormDataRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -1873,11 +1901,13 @@ func (r ApiTestQueryParameterCollectionFormatRequest) Execute() (*_nethttp.Respo
} }
/* /*
* TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat TestQueryParameterCollectionFormat Method for TestQueryParameterCollectionFormat
* To test the collection format in query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test the collection format in query parameters
* @return ApiTestQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestQueryParameterCollectionFormatRequest
*/
func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest { func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context) ApiTestQueryParameterCollectionFormatRequest {
return ApiTestQueryParameterCollectionFormatRequest{ return ApiTestQueryParameterCollectionFormatRequest{
ApiService: a, ApiService: a,
@ -1885,9 +1915,7 @@ func (a *FakeApiService) TestQueryParameterCollectionFormat(ctx _context.Context
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *FakeApiService) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) { func (a *FakeApiService) TestQueryParameterCollectionFormatExecute(r ApiTestQueryParameterCollectionFormatRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -2014,11 +2042,13 @@ func (r ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest) Execut
} }
/* /*
* TestUniqueItemsHeaderAndQueryParameterCollectionFormat Method for TestUniqueItemsHeaderAndQueryParameterCollectionFormat TestUniqueItemsHeaderAndQueryParameterCollectionFormat Method for TestUniqueItemsHeaderAndQueryParameterCollectionFormat
* To test unique items in header and query parameters
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test unique items in header and query parameters
* @return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest
*/
func (a *FakeApiService) TestUniqueItemsHeaderAndQueryParameterCollectionFormat(ctx _context.Context) ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest { func (a *FakeApiService) TestUniqueItemsHeaderAndQueryParameterCollectionFormat(ctx _context.Context) ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest {
return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest{ return ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest{
ApiService: a, ApiService: a,
@ -2026,10 +2056,8 @@ func (a *FakeApiService) TestUniqueItemsHeaderAndQueryParameterCollectionFormat(
} }
} }
/* // Execute executes the request
* Execute executes the request // @return []Pet
* @return []Pet
*/
func (a *FakeApiService) TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute(r ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest) ([]Pet, *_nethttp.Response, error) { func (a *FakeApiService) TestUniqueItemsHeaderAndQueryParameterCollectionFormatExecute(r ApiTestUniqueItemsHeaderAndQueryParameterCollectionFormatRequest) ([]Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -26,17 +26,17 @@ var (
type FakeClassnameTags123Api interface { type FakeClassnameTags123Api interface {
/* /*
* TestClassname To test class name in snake case TestClassname To test class name in snake case
* To test class name in snake case
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test class name in snake case
* @return ApiTestClassnameRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClassnameRequest
*/
TestClassname(ctx _context.Context) ApiTestClassnameRequest TestClassname(ctx _context.Context) ApiTestClassnameRequest
/* // TestClassnameExecute executes the request
* TestClassnameExecute executes the request // @return Client
* @return Client
*/
TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error)
} }
@ -49,6 +49,7 @@ type ApiTestClassnameRequest struct {
client *Client client *Client
} }
// client model
func (r ApiTestClassnameRequest) Client(client Client) ApiTestClassnameRequest { func (r ApiTestClassnameRequest) Client(client Client) ApiTestClassnameRequest {
r.client = &client r.client = &client
return r return r
@ -59,11 +60,13 @@ func (r ApiTestClassnameRequest) Execute() (Client, *_nethttp.Response, error) {
} }
/* /*
* TestClassname To test class name in snake case TestClassname To test class name in snake case
* To test class name in snake case
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). To test class name in snake case
* @return ApiTestClassnameRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTestClassnameRequest
*/
func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) ApiTestClassnameRequest { func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) ApiTestClassnameRequest {
return ApiTestClassnameRequest{ return ApiTestClassnameRequest{
ApiService: a, ApiService: a,
@ -71,10 +74,8 @@ func (a *FakeClassnameTags123ApiService) TestClassname(ctx _context.Context) Api
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Client
* @return Client
*/
func (a *FakeClassnameTags123ApiService) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) { func (a *FakeClassnameTags123ApiService) TestClassnameExecute(r ApiTestClassnameRequest) (Client, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPatch localVarHTTPMethod = _nethttp.MethodPatch

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -28,124 +28,121 @@ var (
type PetApi interface { type PetApi interface {
/* /*
* AddPet Add a new pet to the store AddPet Add a new pet to the store
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiAddPetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiAddPetRequest
*/
AddPet(ctx _context.Context) ApiAddPetRequest AddPet(ctx _context.Context) ApiAddPetRequest
/* // AddPetExecute executes the request
* AddPetExecute executes the request
*/
AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error)
/* /*
* DeletePet Deletes a pet DeletePet Deletes a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId Pet id to delete @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiDeletePetRequest @param petId Pet id to delete
*/ @return ApiDeletePetRequest
*/
DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest
/* // DeletePetExecute executes the request
* DeletePetExecute executes the request
*/
DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error)
/* /*
* FindPetsByStatus Finds Pets by status FindPetsByStatus Finds Pets by status
* Multiple status values can be provided with comma separated strings
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple status values can be provided with comma separated strings
* @return ApiFindPetsByStatusRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByStatusRequest
*/
FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest
/* // FindPetsByStatusExecute executes the request
* FindPetsByStatusExecute executes the request // @return []Pet
* @return []Pet
*/
FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error)
/* /*
* FindPetsByTags Finds Pets by tags FindPetsByTags Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @return ApiFindPetsByTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByTagsRequest
Deprecated
*/
FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest
/* // FindPetsByTagsExecute executes the request
* FindPetsByTagsExecute executes the request // @return []Pet
* @return []Pet // Deprecated
*/
FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error)
/* /*
* GetPetById Find pet by ID GetPetById Find pet by ID
* Returns a single pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a single pet
* @param petId ID of pet to return
* @return ApiGetPetByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param petId ID of pet to return
@return ApiGetPetByIdRequest
*/
GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest
/* // GetPetByIdExecute executes the request
* GetPetByIdExecute executes the request // @return Pet
* @return Pet
*/
GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error)
/* /*
* UpdatePet Update an existing pet UpdatePet Update an existing pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiUpdatePetRequest
*/
UpdatePet(ctx _context.Context) ApiUpdatePetRequest UpdatePet(ctx _context.Context) ApiUpdatePetRequest
/* // UpdatePetExecute executes the request
* UpdatePetExecute executes the request
*/
UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error)
/* /*
* UpdatePetWithForm Updates a pet in the store with form data UpdatePetWithForm Updates a pet in the store with form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet that needs to be updated @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetWithFormRequest @param petId ID of pet that needs to be updated
*/ @return ApiUpdatePetWithFormRequest
*/
UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest
/* // UpdatePetWithFormExecute executes the request
* UpdatePetWithFormExecute executes the request
*/
UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error)
/* /*
* UploadFile uploads an image UploadFile uploads an image
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileRequest
*/
UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest
/* // UploadFileExecute executes the request
* UploadFileExecute executes the request // @return ApiResponse
* @return ApiResponse
*/
UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error)
/* /*
* UploadFileWithRequiredFile uploads an image (required) UploadFileWithRequiredFile uploads an image (required)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileWithRequiredFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileWithRequiredFileRequest
*/
UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest
/* // UploadFileWithRequiredFileExecute executes the request
* UploadFileWithRequiredFileExecute executes the request // @return ApiResponse
* @return ApiResponse
*/
UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error)
} }
@ -158,6 +155,7 @@ type ApiAddPetRequest struct {
pet *Pet pet *Pet
} }
// Pet object that needs to be added to the store
func (r ApiAddPetRequest) Pet(pet Pet) ApiAddPetRequest { func (r ApiAddPetRequest) Pet(pet Pet) ApiAddPetRequest {
r.pet = &pet r.pet = &pet
return r return r
@ -168,10 +166,11 @@ func (r ApiAddPetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* AddPet Add a new pet to the store AddPet Add a new pet to the store
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiAddPetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiAddPetRequest
*/
func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest { func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest {
return ApiAddPetRequest{ return ApiAddPetRequest{
ApiService: a, ApiService: a,
@ -179,9 +178,7 @@ func (a *PetApiService) AddPet(ctx _context.Context) ApiAddPetRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) { func (a *PetApiService) AddPetExecute(r ApiAddPetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -269,11 +266,12 @@ func (r ApiDeletePetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeletePet Deletes a pet DeletePet Deletes a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId Pet id to delete @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiDeletePetRequest @param petId Pet id to delete
*/ @return ApiDeletePetRequest
*/
func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest { func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePetRequest {
return ApiDeletePetRequest{ return ApiDeletePetRequest{
ApiService: a, ApiService: a,
@ -282,9 +280,7 @@ func (a *PetApiService) DeletePet(ctx _context.Context, petId int64) ApiDeletePe
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) { func (a *PetApiService) DeletePetExecute(r ApiDeletePetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -360,6 +356,8 @@ type ApiFindPetsByStatusRequest struct {
status *[]string status *[]string
} }
// Status values that need to be considered for filter
// Deprecated
func (r ApiFindPetsByStatusRequest) Status(status []string) ApiFindPetsByStatusRequest { func (r ApiFindPetsByStatusRequest) Status(status []string) ApiFindPetsByStatusRequest {
r.status = &status r.status = &status
return r return r
@ -370,11 +368,13 @@ func (r ApiFindPetsByStatusRequest) Execute() ([]Pet, *_nethttp.Response, error)
} }
/* /*
* FindPetsByStatus Finds Pets by status FindPetsByStatus Finds Pets by status
* Multiple status values can be provided with comma separated strings
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple status values can be provided with comma separated strings
* @return ApiFindPetsByStatusRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByStatusRequest
*/
func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest { func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStatusRequest {
return ApiFindPetsByStatusRequest{ return ApiFindPetsByStatusRequest{
ApiService: a, ApiService: a,
@ -382,10 +382,8 @@ func (a *PetApiService) FindPetsByStatus(ctx _context.Context) ApiFindPetsByStat
} }
} }
/* // Execute executes the request
* Execute executes the request // @return []Pet
* @return []Pet
*/
func (a *PetApiService) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) { func (a *PetApiService) FindPetsByStatusExecute(r ApiFindPetsByStatusRequest) ([]Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -471,6 +469,7 @@ type ApiFindPetsByTagsRequest struct {
tags *[]string tags *[]string
} }
// Tags to filter by
func (r ApiFindPetsByTagsRequest) Tags(tags []string) ApiFindPetsByTagsRequest { func (r ApiFindPetsByTagsRequest) Tags(tags []string) ApiFindPetsByTagsRequest {
r.tags = &tags r.tags = &tags
return r return r
@ -481,11 +480,15 @@ func (r ApiFindPetsByTagsRequest) Execute() ([]Pet, *_nethttp.Response, error) {
} }
/* /*
* FindPetsByTags Finds Pets by tags FindPetsByTags Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @return ApiFindPetsByTagsRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPetsByTagsRequest
Deprecated
*/
func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest { func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRequest {
return ApiFindPetsByTagsRequest{ return ApiFindPetsByTagsRequest{
ApiService: a, ApiService: a,
@ -493,10 +496,9 @@ func (a *PetApiService) FindPetsByTags(ctx _context.Context) ApiFindPetsByTagsRe
} }
} }
/* // Execute executes the request
* Execute executes the request // @return []Pet
* @return []Pet // Deprecated
*/
func (a *PetApiService) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) { func (a *PetApiService) FindPetsByTagsExecute(r ApiFindPetsByTagsRequest) ([]Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -588,12 +590,14 @@ func (r ApiGetPetByIdRequest) Execute() (Pet, *_nethttp.Response, error) {
} }
/* /*
* GetPetById Find pet by ID GetPetById Find pet by ID
* Returns a single pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a single pet
* @param petId ID of pet to return
* @return ApiGetPetByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param petId ID of pet to return
@return ApiGetPetByIdRequest
*/
func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest { func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetByIdRequest {
return ApiGetPetByIdRequest{ return ApiGetPetByIdRequest{
ApiService: a, ApiService: a,
@ -602,10 +606,8 @@ func (a *PetApiService) GetPetById(ctx _context.Context, petId int64) ApiGetPetB
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Pet
* @return Pet
*/
func (a *PetApiService) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) { func (a *PetApiService) GetPetByIdExecute(r ApiGetPetByIdRequest) (Pet, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -702,6 +704,7 @@ type ApiUpdatePetRequest struct {
pet *Pet pet *Pet
} }
// Pet object that needs to be added to the store
func (r ApiUpdatePetRequest) Pet(pet Pet) ApiUpdatePetRequest { func (r ApiUpdatePetRequest) Pet(pet Pet) ApiUpdatePetRequest {
r.pet = &pet r.pet = &pet
return r return r
@ -712,10 +715,11 @@ func (r ApiUpdatePetRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdatePet Update an existing pet UpdatePet Update an existing pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiUpdatePetRequest
*/
func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest { func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest {
return ApiUpdatePetRequest{ return ApiUpdatePetRequest{
ApiService: a, ApiService: a,
@ -723,9 +727,7 @@ func (a *PetApiService) UpdatePet(ctx _context.Context) ApiUpdatePetRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) { func (a *PetApiService) UpdatePetExecute(r ApiUpdatePetRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut
@ -804,10 +806,12 @@ type ApiUpdatePetWithFormRequest struct {
status *string status *string
} }
// Updated name of the pet
func (r ApiUpdatePetWithFormRequest) Name(name string) ApiUpdatePetWithFormRequest { func (r ApiUpdatePetWithFormRequest) Name(name string) ApiUpdatePetWithFormRequest {
r.name = &name r.name = &name
return r return r
} }
// Updated status of the pet
func (r ApiUpdatePetWithFormRequest) Status(status string) ApiUpdatePetWithFormRequest { func (r ApiUpdatePetWithFormRequest) Status(status string) ApiUpdatePetWithFormRequest {
r.status = &status r.status = &status
return r return r
@ -818,11 +822,12 @@ func (r ApiUpdatePetWithFormRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdatePetWithForm Updates a pet in the store with form data UpdatePetWithForm Updates a pet in the store with form data
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet that needs to be updated @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUpdatePetWithFormRequest @param petId ID of pet that needs to be updated
*/ @return ApiUpdatePetWithFormRequest
*/
func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest { func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) ApiUpdatePetWithFormRequest {
return ApiUpdatePetWithFormRequest{ return ApiUpdatePetWithFormRequest{
ApiService: a, ApiService: a,
@ -831,9 +836,7 @@ func (a *PetApiService) UpdatePetWithForm(ctx _context.Context, petId int64) Api
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *PetApiService) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) { func (a *PetApiService) UpdatePetWithFormExecute(r ApiUpdatePetWithFormRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -914,10 +917,12 @@ type ApiUploadFileRequest struct {
file **os.File file **os.File
} }
// Additional data to pass to server
func (r ApiUploadFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileRequest { func (r ApiUploadFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileRequest {
r.additionalMetadata = &additionalMetadata r.additionalMetadata = &additionalMetadata
return r return r
} }
// file to upload
func (r ApiUploadFileRequest) File(file *os.File) ApiUploadFileRequest { func (r ApiUploadFileRequest) File(file *os.File) ApiUploadFileRequest {
r.file = &file r.file = &file
return r return r
@ -928,11 +933,12 @@ func (r ApiUploadFileRequest) Execute() (ApiResponse, *_nethttp.Response, error)
} }
/* /*
* UploadFile uploads an image UploadFile uploads an image
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileRequest
*/
func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest { func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadFileRequest {
return ApiUploadFileRequest{ return ApiUploadFileRequest{
ApiService: a, ApiService: a,
@ -941,10 +947,8 @@ func (a *PetApiService) UploadFile(ctx _context.Context, petId int64) ApiUploadF
} }
} }
/* // Execute executes the request
* Execute executes the request // @return ApiResponse
* @return ApiResponse
*/
func (a *PetApiService) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) { func (a *PetApiService) UploadFileExecute(r ApiUploadFileRequest) (ApiResponse, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -1043,10 +1047,12 @@ type ApiUploadFileWithRequiredFileRequest struct {
additionalMetadata *string additionalMetadata *string
} }
// file to upload
func (r ApiUploadFileWithRequiredFileRequest) RequiredFile(requiredFile *os.File) ApiUploadFileWithRequiredFileRequest { func (r ApiUploadFileWithRequiredFileRequest) RequiredFile(requiredFile *os.File) ApiUploadFileWithRequiredFileRequest {
r.requiredFile = &requiredFile r.requiredFile = &requiredFile
return r return r
} }
// Additional data to pass to server
func (r ApiUploadFileWithRequiredFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileWithRequiredFileRequest { func (r ApiUploadFileWithRequiredFileRequest) AdditionalMetadata(additionalMetadata string) ApiUploadFileWithRequiredFileRequest {
r.additionalMetadata = &additionalMetadata r.additionalMetadata = &additionalMetadata
return r return r
@ -1057,11 +1063,12 @@ func (r ApiUploadFileWithRequiredFileRequest) Execute() (ApiResponse, *_nethttp.
} }
/* /*
* UploadFileWithRequiredFile uploads an image (required) UploadFileWithRequiredFile uploads an image (required)
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param petId ID of pet to update @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiUploadFileWithRequiredFileRequest @param petId ID of pet to update
*/ @return ApiUploadFileWithRequiredFileRequest
*/
func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest { func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId int64) ApiUploadFileWithRequiredFileRequest {
return ApiUploadFileWithRequiredFileRequest{ return ApiUploadFileWithRequiredFileRequest{
ApiService: a, ApiService: a,
@ -1070,10 +1077,8 @@ func (a *PetApiService) UploadFileWithRequiredFile(ctx _context.Context, petId i
} }
} }
/* // Execute executes the request
* Execute executes the request // @return ApiResponse
* @return ApiResponse
*/
func (a *PetApiService) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) { func (a *PetApiService) UploadFileWithRequiredFileExecute(r ApiUploadFileWithRequiredFileRequest) (ApiResponse, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -27,59 +27,58 @@ var (
type StoreApi interface { type StoreApi interface {
/* /*
* DeleteOrder Delete purchase order by ID DeleteOrder Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted
* @return ApiDeleteOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of the order that needs to be deleted
@return ApiDeleteOrderRequest
*/
DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest
/* // DeleteOrderExecute executes the request
* DeleteOrderExecute executes the request
*/
DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error)
/* /*
* GetInventory Returns pet inventories by status GetInventory Returns pet inventories by status
* Returns a map of status codes to quantities
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a map of status codes to quantities
* @return ApiGetInventoryRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInventoryRequest
*/
GetInventory(ctx _context.Context) ApiGetInventoryRequest GetInventory(ctx _context.Context) ApiGetInventoryRequest
/* // GetInventoryExecute executes the request
* GetInventoryExecute executes the request // @return map[string]int32
* @return map[string]int32
*/
GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error)
/* /*
* GetOrderById Find purchase order by ID GetOrderById Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched
* @return ApiGetOrderByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of pet that needs to be fetched
@return ApiGetOrderByIdRequest
*/
GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest
/* // GetOrderByIdExecute executes the request
* GetOrderByIdExecute executes the request // @return Order
* @return Order
*/
GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error)
/* /*
* PlaceOrder Place an order for a pet PlaceOrder Place an order for a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiPlaceOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiPlaceOrderRequest
*/
PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest
/* // PlaceOrderExecute executes the request
* PlaceOrderExecute executes the request // @return Order
* @return Order
*/
PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error)
} }
@ -98,12 +97,14 @@ func (r ApiDeleteOrderRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeleteOrder Delete purchase order by ID DeleteOrder Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted
* @return ApiDeleteOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of the order that needs to be deleted
@return ApiDeleteOrderRequest
*/
func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest { func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiDeleteOrderRequest {
return ApiDeleteOrderRequest{ return ApiDeleteOrderRequest{
ApiService: a, ApiService: a,
@ -112,9 +113,7 @@ func (a *StoreApiService) DeleteOrder(ctx _context.Context, orderId string) ApiD
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *StoreApiService) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) { func (a *StoreApiService) DeleteOrderExecute(r ApiDeleteOrderRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -192,11 +191,13 @@ func (r ApiGetInventoryRequest) Execute() (map[string]int32, *_nethttp.Response,
} }
/* /*
* GetInventory Returns pet inventories by status GetInventory Returns pet inventories by status
* Returns a map of status codes to quantities
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). Returns a map of status codes to quantities
* @return ApiGetInventoryRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInventoryRequest
*/
func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequest { func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequest {
return ApiGetInventoryRequest{ return ApiGetInventoryRequest{
ApiService: a, ApiService: a,
@ -204,10 +205,8 @@ func (a *StoreApiService) GetInventory(ctx _context.Context) ApiGetInventoryRequ
} }
} }
/* // Execute executes the request
* Execute executes the request // @return map[string]int32
* @return map[string]int32
*/
func (a *StoreApiService) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) { func (a *StoreApiService) GetInventoryExecute(r ApiGetInventoryRequest) (map[string]int32, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -309,12 +308,14 @@ func (r ApiGetOrderByIdRequest) Execute() (Order, *_nethttp.Response, error) {
} }
/* /*
* GetOrderById Find purchase order by ID GetOrderById Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched
* @return ApiGetOrderByIdRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param orderId ID of pet that needs to be fetched
@return ApiGetOrderByIdRequest
*/
func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest { func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiGetOrderByIdRequest {
return ApiGetOrderByIdRequest{ return ApiGetOrderByIdRequest{
ApiService: a, ApiService: a,
@ -323,10 +324,8 @@ func (a *StoreApiService) GetOrderById(ctx _context.Context, orderId int64) ApiG
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Order
* @return Order
*/
func (a *StoreApiService) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) { func (a *StoreApiService) GetOrderByIdExecute(r ApiGetOrderByIdRequest) (Order, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -415,6 +414,7 @@ type ApiPlaceOrderRequest struct {
order *Order order *Order
} }
// order placed for purchasing the pet
func (r ApiPlaceOrderRequest) Order(order Order) ApiPlaceOrderRequest { func (r ApiPlaceOrderRequest) Order(order Order) ApiPlaceOrderRequest {
r.order = &order r.order = &order
return r return r
@ -425,10 +425,11 @@ func (r ApiPlaceOrderRequest) Execute() (Order, *_nethttp.Response, error) {
} }
/* /*
* PlaceOrder Place an order for a pet PlaceOrder Place an order for a pet
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiPlaceOrderRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiPlaceOrderRequest
*/
func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest { func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest {
return ApiPlaceOrderRequest{ return ApiPlaceOrderRequest{
ApiService: a, ApiService: a,
@ -436,10 +437,8 @@ func (a *StoreApiService) PlaceOrder(ctx _context.Context) ApiPlaceOrderRequest
} }
} }
/* // Execute executes the request
* Execute executes the request // @return Order
* @return Order
*/
func (a *StoreApiService) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) { func (a *StoreApiService) PlaceOrderExecute(r ApiPlaceOrderRequest) (Order, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
@ -27,107 +27,102 @@ var (
type UserApi interface { type UserApi interface {
/* /*
* CreateUser Create user CreateUser Create user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @return ApiCreateUserRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest
*/
CreateUser(ctx _context.Context) ApiCreateUserRequest CreateUser(ctx _context.Context) ApiCreateUserRequest
/* // CreateUserExecute executes the request
* CreateUserExecute executes the request
*/
CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error)
/* /*
* CreateUsersWithArrayInput Creates list of users with given input array CreateUsersWithArrayInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithArrayInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithArrayInputRequest
*/
CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest
/* // CreateUsersWithArrayInputExecute executes the request
* CreateUsersWithArrayInputExecute executes the request
*/
CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error)
/* /*
* CreateUsersWithListInput Creates list of users with given input array CreateUsersWithListInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithListInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithListInputRequest
*/
CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest
/* // CreateUsersWithListInputExecute executes the request
* CreateUsersWithListInputExecute executes the request
*/
CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error)
/* /*
* DeleteUser Delete user DeleteUser Delete user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username The name that needs to be deleted
* @return ApiDeleteUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username The name that needs to be deleted
@return ApiDeleteUserRequest
*/
DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest
/* // DeleteUserExecute executes the request
* DeleteUserExecute executes the request
*/
DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error)
/* /*
* GetUserByName Get user by user name GetUserByName Get user by user name
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param username The name that needs to be fetched. Use user1 for testing. @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiGetUserByNameRequest @param username The name that needs to be fetched. Use user1 for testing.
*/ @return ApiGetUserByNameRequest
*/
GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest
/* // GetUserByNameExecute executes the request
* GetUserByNameExecute executes the request // @return User
* @return User
*/
GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error)
/* /*
* LoginUser Logs user into the system LoginUser Logs user into the system
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLoginUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLoginUserRequest
*/
LoginUser(ctx _context.Context) ApiLoginUserRequest LoginUser(ctx _context.Context) ApiLoginUserRequest
/* // LoginUserExecute executes the request
* LoginUserExecute executes the request // @return string
* @return string
*/
LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error)
/* /*
* LogoutUser Logs out current logged in user session LogoutUser Logs out current logged in user session
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLogoutUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLogoutUserRequest
*/
LogoutUser(ctx _context.Context) ApiLogoutUserRequest LogoutUser(ctx _context.Context) ApiLogoutUserRequest
/* // LogoutUserExecute executes the request
* LogoutUserExecute executes the request
*/
LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error)
/* /*
* UpdateUser Updated user UpdateUser Updated user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username name that need to be deleted
* @return ApiUpdateUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username name that need to be deleted
@return ApiUpdateUserRequest
*/
UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest
/* // UpdateUserExecute executes the request
* UpdateUserExecute executes the request
*/
UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error)
} }
@ -140,6 +135,7 @@ type ApiCreateUserRequest struct {
user *User user *User
} }
// Created user object
func (r ApiCreateUserRequest) User(user User) ApiCreateUserRequest { func (r ApiCreateUserRequest) User(user User) ApiCreateUserRequest {
r.user = &user r.user = &user
return r return r
@ -150,11 +146,13 @@ func (r ApiCreateUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* CreateUser Create user CreateUser Create user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @return ApiCreateUserRequest
*/ @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest
*/
func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest { func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest {
return ApiCreateUserRequest{ return ApiCreateUserRequest{
ApiService: a, ApiService: a,
@ -162,9 +160,7 @@ func (a *UserApiService) CreateUser(ctx _context.Context) ApiCreateUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUserExecute(r ApiCreateUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -241,6 +237,7 @@ type ApiCreateUsersWithArrayInputRequest struct {
user *[]User user *[]User
} }
// List of user object
func (r ApiCreateUsersWithArrayInputRequest) User(user []User) ApiCreateUsersWithArrayInputRequest { func (r ApiCreateUsersWithArrayInputRequest) User(user []User) ApiCreateUsersWithArrayInputRequest {
r.user = &user r.user = &user
return r return r
@ -251,10 +248,11 @@ func (r ApiCreateUsersWithArrayInputRequest) Execute() (*_nethttp.Response, erro
} }
/* /*
* CreateUsersWithArrayInput Creates list of users with given input array CreateUsersWithArrayInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithArrayInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithArrayInputRequest
*/
func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest { func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCreateUsersWithArrayInputRequest {
return ApiCreateUsersWithArrayInputRequest{ return ApiCreateUsersWithArrayInputRequest{
ApiService: a, ApiService: a,
@ -262,9 +260,7 @@ func (a *UserApiService) CreateUsersWithArrayInput(ctx _context.Context) ApiCrea
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUsersWithArrayInputExecute(r ApiCreateUsersWithArrayInputRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -341,6 +337,7 @@ type ApiCreateUsersWithListInputRequest struct {
user *[]User user *[]User
} }
// List of user object
func (r ApiCreateUsersWithListInputRequest) User(user []User) ApiCreateUsersWithListInputRequest { func (r ApiCreateUsersWithListInputRequest) User(user []User) ApiCreateUsersWithListInputRequest {
r.user = &user r.user = &user
return r return r
@ -351,10 +348,11 @@ func (r ApiCreateUsersWithListInputRequest) Execute() (*_nethttp.Response, error
} }
/* /*
* CreateUsersWithListInput Creates list of users with given input array CreateUsersWithListInput Creates list of users with given input array
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiCreateUsersWithListInputRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiCreateUsersWithListInputRequest
*/
func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest { func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreateUsersWithListInputRequest {
return ApiCreateUsersWithListInputRequest{ return ApiCreateUsersWithListInputRequest{
ApiService: a, ApiService: a,
@ -362,9 +360,7 @@ func (a *UserApiService) CreateUsersWithListInput(ctx _context.Context) ApiCreat
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) { func (a *UserApiService) CreateUsersWithListInputExecute(r ApiCreateUsersWithListInputRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPost localVarHTTPMethod = _nethttp.MethodPost
@ -447,12 +443,14 @@ func (r ApiDeleteUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* DeleteUser Delete user DeleteUser Delete user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username The name that needs to be deleted
* @return ApiDeleteUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username The name that needs to be deleted
@return ApiDeleteUserRequest
*/
func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest { func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest {
return ApiDeleteUserRequest{ return ApiDeleteUserRequest{
ApiService: a, ApiService: a,
@ -461,9 +459,7 @@ func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDe
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodDelete localVarHTTPMethod = _nethttp.MethodDelete
@ -542,11 +538,12 @@ func (r ApiGetUserByNameRequest) Execute() (User, *_nethttp.Response, error) {
} }
/* /*
* GetUserByName Get user by user name GetUserByName Get user by user name
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @param username The name that needs to be fetched. Use user1 for testing. @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiGetUserByNameRequest @param username The name that needs to be fetched. Use user1 for testing.
*/ @return ApiGetUserByNameRequest
*/
func (a *UserApiService) GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest { func (a *UserApiService) GetUserByName(ctx _context.Context, username string) ApiGetUserByNameRequest {
return ApiGetUserByNameRequest{ return ApiGetUserByNameRequest{
ApiService: a, ApiService: a,
@ -555,10 +552,8 @@ func (a *UserApiService) GetUserByName(ctx _context.Context, username string) Ap
} }
} }
/* // Execute executes the request
* Execute executes the request // @return User
* @return User
*/
func (a *UserApiService) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) { func (a *UserApiService) GetUserByNameExecute(r ApiGetUserByNameRequest) (User, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -642,10 +637,12 @@ type ApiLoginUserRequest struct {
password *string password *string
} }
// The user name for login
func (r ApiLoginUserRequest) Username(username string) ApiLoginUserRequest { func (r ApiLoginUserRequest) Username(username string) ApiLoginUserRequest {
r.username = &username r.username = &username
return r return r
} }
// The password for login in clear text
func (r ApiLoginUserRequest) Password(password string) ApiLoginUserRequest { func (r ApiLoginUserRequest) Password(password string) ApiLoginUserRequest {
r.password = &password r.password = &password
return r return r
@ -656,10 +653,11 @@ func (r ApiLoginUserRequest) Execute() (string, *_nethttp.Response, error) {
} }
/* /*
* LoginUser Logs user into the system LoginUser Logs user into the system
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLoginUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLoginUserRequest
*/
func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest { func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest {
return ApiLoginUserRequest{ return ApiLoginUserRequest{
ApiService: a, ApiService: a,
@ -667,10 +665,8 @@ func (a *UserApiService) LoginUser(ctx _context.Context) ApiLoginUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request // @return string
* @return string
*/
func (a *UserApiService) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) { func (a *UserApiService) LoginUserExecute(r ApiLoginUserRequest) (string, *_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -765,10 +761,11 @@ func (r ApiLogoutUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* LogoutUser Logs out current logged in user session LogoutUser Logs out current logged in user session
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return ApiLogoutUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @return ApiLogoutUserRequest
*/
func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest { func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest {
return ApiLogoutUserRequest{ return ApiLogoutUserRequest{
ApiService: a, ApiService: a,
@ -776,9 +773,7 @@ func (a *UserApiService) LogoutUser(ctx _context.Context) ApiLogoutUserRequest {
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) LogoutUserExecute(r ApiLogoutUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodGet localVarHTTPMethod = _nethttp.MethodGet
@ -851,6 +846,7 @@ type ApiUpdateUserRequest struct {
user *User user *User
} }
// Updated user object
func (r ApiUpdateUserRequest) User(user User) ApiUpdateUserRequest { func (r ApiUpdateUserRequest) User(user User) ApiUpdateUserRequest {
r.user = &user r.user = &user
return r return r
@ -861,12 +857,14 @@ func (r ApiUpdateUserRequest) Execute() (*_nethttp.Response, error) {
} }
/* /*
* UpdateUser Updated user UpdateUser Updated user
* This can only be done by the logged in user.
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). This can only be done by the logged in user.
* @param username name that need to be deleted
* @return ApiUpdateUserRequest @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
*/ @param username name that need to be deleted
@return ApiUpdateUserRequest
*/
func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest { func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUpdateUserRequest {
return ApiUpdateUserRequest{ return ApiUpdateUserRequest{
ApiService: a, ApiService: a,
@ -875,9 +873,7 @@ func (a *UserApiService) UpdateUser(ctx _context.Context, username string) ApiUp
} }
} }
/* // Execute executes the request
* Execute executes the request
*/
func (a *UserApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) { func (a *UserApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*_nethttp.Response, error) {
var ( var (
localVarHTTPMethod = _nethttp.MethodPut localVarHTTPMethod = _nethttp.MethodPut

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

View File

@ -1,10 +1,10 @@
/* /*
* OpenAPI Petstore OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* API version: 1.0.0 API version: 1.0.0
*/ */
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

Some files were not shown because too many files have changed in this diff Show More