Refactor default and example values in Java generators (#1045)

* fix default, example for java okhttp

* update java feign samples

* update samples, doc

* add new doc for dart-jaguar

* update model template

* update jaxrs spec model

* update resteasy sample

* update java samples
This commit is contained in:
William Cheng
2018-10-07 03:56:16 +08:00
committed by GitHub
parent a1d242595e
commit 999f472e4b
1233 changed files with 4917 additions and 4909 deletions

View File

@@ -1771,10 +1771,7 @@ public class DefaultCodegen implements CodegenConfig {
property.title = p.getTitle(); property.title = p.getTitle();
property.getter = toGetter(name); property.getter = toGetter(name);
property.setter = toSetter(name); property.setter = toSetter(name);
String example = toExampleValue(p); property.example = toExampleValue(p);
if (!"null".equals(example)) {
property.example = example;
}
property.defaultValue = toDefaultValue(p); property.defaultValue = toDefaultValue(p);
property.defaultValueWithParam = toDefaultValueWithParam(name, p); property.defaultValueWithParam = toDefaultValueWithParam(name, p);
property.jsonSchema = Json.pretty(p); property.jsonSchema = Json.pretty(p);
@@ -2743,9 +2740,8 @@ public class DefaultCodegen implements CodegenConfig {
} }
// set default value // set default value
if (parameterSchema.getDefault() != null) { codegenParameter.defaultValue = toDefaultValue(parameterSchema);
codegenParameter.defaultValue = toDefaultValue(parameterSchema);
}
// TDOO revise collectionFormat // TDOO revise collectionFormat
String collectionFormat = null; String collectionFormat = null;
if (ModelUtils.isArraySchema(parameterSchema)) { // for array parameter if (ModelUtils.isArraySchema(parameterSchema)) { // for array parameter

View File

@@ -754,7 +754,7 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
return p.getDefault().toString(); return p.getDefault().toString();
} }
} }
return "null"; return null;
} else if (ModelUtils.isNumberSchema(p)) { } else if (ModelUtils.isNumberSchema(p)) {
if (p.getDefault() != null) { if (p.getDefault() != null) {
if (SchemaTypeUtil.FLOAT_FORMAT.equals(p.getFormat())) { if (SchemaTypeUtil.FLOAT_FORMAT.equals(p.getFormat())) {
@@ -763,12 +763,12 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
return p.getDefault().toString() + "d"; return p.getDefault().toString() + "d";
} }
} }
return "null"; return null;
} else if (ModelUtils.isBooleanSchema(p)) { } else if (ModelUtils.isBooleanSchema(p)) {
if (p.getDefault() != null) { if (p.getDefault() != null) {
return p.getDefault().toString(); return p.getDefault().toString();
} }
return "null"; return null;
} else if (ModelUtils.isStringSchema(p)) { } else if (ModelUtils.isStringSchema(p)) {
if (p.getDefault() != null) { if (p.getDefault() != null) {
String _default = (String) p.getDefault(); String _default = (String) p.getDefault();
@@ -779,7 +779,7 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
return _default; return _default;
} }
} }
return "null"; return null;
} }
return super.toDefaultValue(p); return super.toDefaultValue(p);
} }
@@ -840,7 +840,18 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
if (example == null) { if (example == null) {
example = "null"; example = "null";
} else if (Boolean.TRUE.equals(p.isListContainer)) { } else if (Boolean.TRUE.equals(p.isListContainer)) {
example = "Arrays.asList(" + example + ")";
if (p.items.defaultValue != null) {
String innerExample;
if ("String".equals(p.items.dataType)) {
innerExample = "\"" + p.items.defaultValue + "\"";
} else {
innerExample = p.items.defaultValue;
}
example = "Arrays.asList(" + innerExample + ")";
} else {
example = "Arrays.asList()";
}
} else if (Boolean.TRUE.equals(p.isMapContainer)) { } else if (Boolean.TRUE.equals(p.isMapContainer)) {
example = "new HashMap()"; example = "new HashMap()";
} }
@@ -853,7 +864,7 @@ public abstract class AbstractJavaCodegen extends DefaultCodegen implements Code
if (p.getExample() != null) { if (p.getExample() != null) {
return escapeText(p.getExample().toString()); return escapeText(p.getExample().toString());
} else { } else {
return super.toExampleValue(p); return null;
} }
} }

View File

@@ -46,7 +46,7 @@ public class {{classname}} {
* {{summary}} * {{summary}}
* {{notes}} * {{notes}}
{{#allParams}} {{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/isContainer}}{{/required}}
{{/allParams}} {{/allParams}}
{{#returnType}} {{#returnType}}
* @return {{returnType}} * @return {{returnType}}

View File

@@ -62,7 +62,7 @@ try {
{{^allParams}}This endpoint does not need any parameter.{{/allParams}}{{#allParams}}{{#-last}} {{^allParams}}This endpoint does not need any parameter.{{/allParams}}{{#allParams}}{{#-last}}
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}} ------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}}
{{#allParams}} **{{paramName}}** | {{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}{{#isFile}}**{{dataType}}**{{/isFile}}{{^isFile}}[**{{dataType}}**]({{baseType}}.md){{/isFile}}{{/isPrimitiveType}}| {{description}} |{{^required}} [optional]{{/required}}{{#defaultValue}} [default to {{defaultValue}}]{{/defaultValue}}{{#allowableValues}} [enum: {{#values}}{{{.}}}{{^-last}}, {{/-last}}{{/values}}]{{/allowableValues}} {{#allParams}} **{{paramName}}** | {{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}{{#isFile}}**{{dataType}}**{{/isFile}}{{^isFile}}[**{{dataType}}**]({{baseType}}.md){{/isFile}}{{/isPrimitiveType}}| {{description}} |{{^required}} [optional]{{/required}}{{^isContainer}}{{#defaultValue}} [default to {{defaultValue}}]{{/defaultValue}}{{/isContainer}}{{#allowableValues}} [enum: {{#values}}{{{.}}}{{^-last}}, {{/-last}}{{/values}}]{{/allowableValues}}
{{/allParams}} {{/allParams}}
### Return type ### Return type

View File

@@ -25,7 +25,7 @@ public interface {{classname}} extends ApiClient.Api {
* {{summary}} * {{summary}}
* {{notes}} * {{notes}}
{{#allParams}} {{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}
{{/allParams}} {{/allParams}}
{{#returnType}} {{#returnType}}
* @return {{returnType}} * @return {{returnType}}
@@ -55,14 +55,14 @@ public interface {{classname}} extends ApiClient.Api {
* building up this map in a fluent style. * building up this map in a fluent style.
{{#allParams}} {{#allParams}}
{{^isQueryParam}} {{^isQueryParam}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}
{{/isQueryParam}} {{/isQueryParam}}
{{/allParams}} {{/allParams}}
* @param queryParams Map of query parameters as name-value pairs * @param queryParams Map of query parameters as name-value pairs
* <p>The following elements may be specified in the query map:</p> * <p>The following elements may be specified in the query map:</p>
* <ul> * <ul>
{{#queryParams}} {{#queryParams}}
* <li>{{paramName}} - {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}}</li> * <li>{{paramName}} - {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}</li>
{{/queryParams}} {{/queryParams}}
* </ul> * </ul>
{{#returnType}} {{#returnType}}

View File

@@ -65,7 +65,7 @@ public class {{classname}} {
{{#operation}} {{#operation}}
/** /**
* Build call for {{operationId}}{{#allParams}} * Build call for {{operationId}}{{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}}{{/allParams}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}{{/allParams}}
* @param progressListener Progress listener * @param progressListener Progress listener
* @param progressRequestListener Progress request listener * @param progressRequestListener Progress request listener
* @return Call to execute * @return Call to execute
@@ -188,7 +188,7 @@ public class {{classname}} {
/** /**
* {{summary}} * {{summary}}
* {{notes}}{{#allParams}} * {{notes}}{{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}}{{/allParams}}{{#returnType}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}{{/allParams}}{{#returnType}}
* @return {{returnType}}{{/returnType}} * @return {{returnType}}{{/returnType}}
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
{{#isDeprecated}} {{#isDeprecated}}
@@ -210,7 +210,7 @@ public class {{classname}} {
/** /**
* {{summary}} * {{summary}}
* {{notes}}{{#allParams}} * {{notes}}{{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}}{{/allParams}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}{{/allParams}}
* @return ApiResponse&lt;{{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}Void{{/returnType}}&gt; * @return ApiResponse&lt;{{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}Void{{/returnType}}&gt;
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
{{#isDeprecated}} {{#isDeprecated}}
@@ -233,7 +233,7 @@ public class {{classname}} {
/** /**
* {{summary}} (asynchronously) * {{summary}} (asynchronously)
* {{notes}}{{#allParams}} * {{notes}}{{#allParams}}
* @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{#defaultValue}}, default to {{.}}{{/defaultValue}}){{/required}}{{/allParams}} * @param {{paramName}} {{description}}{{#required}} (required){{/required}}{{^required}} (optional{{^isContainer}}{{#defaultValue}}, default to {{.}}{{/defaultValue}}{{/isContainer}}){{/required}}{{/allParams}}
* @param callback The callback to be executed when the API call finishes * @param callback The callback to be executed when the API call finishes
* @return The request call * @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object * @throws ApiException If fail to process the API call, e.g. serializing the request body object

View File

@@ -62,7 +62,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}} {{/parent}}{{#parcela
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -22,7 +22,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -15,7 +15,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}}{{/vars}} {{/isContainer}}{{/vars}}
{{#vars}} {{#vars}}

View File

@@ -40,7 +40,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}
{{#vars}} {{#vars}}

View File

@@ -25,7 +25,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -12,7 +12,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
{{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}} {{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}};{{/vars}} private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{defaultValue}}}{{/defaultValue}};{{/vars}}
{{#vars}} {{#vars}}
/** /**

View File

@@ -11,7 +11,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
{{>enumClass}}{{/isContainer}}{{#isContainer}}{{#mostInnerItems}} {{>enumClass}}{{/isContainer}}{{#isContainer}}{{#mostInnerItems}}
{{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}} {{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}};{{/vars}} private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{defaultValue}}}{{/defaultValue}};{{/vars}}
{{#vars}} {{#vars}}
/** /**

View File

@@ -17,7 +17,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
{{>enumClass}}{{/isContainer}}{{#isContainer}}{{#mostInnerItems}} {{>enumClass}}{{/isContainer}}{{#isContainer}}{{#mostInnerItems}}
{{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}} {{>enumClass}}{{/mostInnerItems}}{{/isContainer}}{{/isEnum}}
private {{#useBeanValidation}}@Valid{{/useBeanValidation}} {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}};{{/vars}} private {{#useBeanValidation}}@Valid{{/useBeanValidation}} {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};{{/vars}}
{{#vars}} {{#vars}}
/** /**

View File

@@ -29,7 +29,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -31,7 +31,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -25,7 +25,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -32,7 +32,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {{#seriali
private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}}; private {{{datatypeWithEnum}}} {{name}}{{#required}} = {{{defaultValue}}}{{/required}}{{^required}} = null{{/required}};
{{/isContainer}} {{/isContainer}}
{{^isContainer}} {{^isContainer}}
private {{{datatypeWithEnum}}} {{name}} = {{{defaultValue}}}; private {{{datatypeWithEnum}}} {{name}}{{#defaultValue}} = {{{.}}}{{/defaultValue}};
{{/isContainer}} {{/isContainer}}
{{/vars}} {{/vars}}

View File

@@ -51,7 +51,7 @@ public class JavaModelEnumTest {
Assert.assertEquals(enumVar.dataType, "String"); Assert.assertEquals(enumVar.dataType, "String");
Assert.assertEquals(enumVar.datatypeWithEnum, "NameEnum"); Assert.assertEquals(enumVar.datatypeWithEnum, "NameEnum");
Assert.assertEquals(enumVar.name, "name"); Assert.assertEquals(enumVar.name, "name");
Assert.assertEquals(enumVar.defaultValue, "null"); Assert.assertEquals(enumVar.defaultValue, null);
Assert.assertEquals(enumVar.baseType, "String"); Assert.assertEquals(enumVar.baseType, "String");
Assert.assertTrue(enumVar.isEnum); Assert.assertTrue(enumVar.isEnum);
} }
@@ -80,7 +80,7 @@ public class JavaModelEnumTest {
Assert.assertEquals(enumVar.mostInnerItems.dataType, "String"); Assert.assertEquals(enumVar.mostInnerItems.dataType, "String");
Assert.assertEquals(enumVar.mostInnerItems.datatypeWithEnum, "NameEnum"); Assert.assertEquals(enumVar.mostInnerItems.datatypeWithEnum, "NameEnum");
Assert.assertEquals(enumVar.mostInnerItems.name, "name"); Assert.assertEquals(enumVar.mostInnerItems.name, "name");
Assert.assertEquals(enumVar.mostInnerItems.defaultValue, "null"); Assert.assertEquals(enumVar.mostInnerItems.defaultValue, null);
Assert.assertEquals(enumVar.mostInnerItems.baseType, "String"); Assert.assertEquals(enumVar.mostInnerItems.baseType, "String");
Assert.assertEquals(enumVar.mostInnerItems.baseType, enumVar.items.baseType); Assert.assertEquals(enumVar.mostInnerItems.baseType, enumVar.items.baseType);
@@ -111,7 +111,7 @@ public class JavaModelEnumTest {
Assert.assertEquals(enumVar.mostInnerItems.dataType, "String"); Assert.assertEquals(enumVar.mostInnerItems.dataType, "String");
Assert.assertEquals(enumVar.mostInnerItems.datatypeWithEnum, "NameEnum"); Assert.assertEquals(enumVar.mostInnerItems.datatypeWithEnum, "NameEnum");
Assert.assertEquals(enumVar.mostInnerItems.name, "name"); Assert.assertEquals(enumVar.mostInnerItems.name, "name");
Assert.assertEquals(enumVar.mostInnerItems.defaultValue, "null"); Assert.assertEquals(enumVar.mostInnerItems.defaultValue, null);
Assert.assertEquals(enumVar.mostInnerItems.baseType, "String"); Assert.assertEquals(enumVar.mostInnerItems.baseType, "String");
Assert.assertEquals(enumVar.mostInnerItems.baseType, enumVar.items.items.baseType); Assert.assertEquals(enumVar.mostInnerItems.baseType, enumVar.items.items.baseType);

View File

@@ -97,7 +97,7 @@ public class JavaModelTest {
Assert.assertEquals(property1.setter, "setId"); Assert.assertEquals(property1.setter, "setId");
Assert.assertEquals(property1.dataType, "Long"); Assert.assertEquals(property1.dataType, "Long");
Assert.assertEquals(property1.name, "id"); Assert.assertEquals(property1.name, "id");
Assert.assertEquals(property1.defaultValue, "null"); Assert.assertEquals(property1.defaultValue, null);
Assert.assertEquals(property1.baseType, "Long"); Assert.assertEquals(property1.baseType, "Long");
Assert.assertTrue(property1.hasMore); Assert.assertTrue(property1.hasMore);
Assert.assertTrue(property1.required); Assert.assertTrue(property1.required);
@@ -111,7 +111,7 @@ public class JavaModelTest {
Assert.assertEquals(property2.setter, "setName"); Assert.assertEquals(property2.setter, "setName");
Assert.assertEquals(property2.dataType, "String"); Assert.assertEquals(property2.dataType, "String");
Assert.assertEquals(property2.name, "name"); Assert.assertEquals(property2.name, "name");
Assert.assertEquals(property2.defaultValue, "null"); Assert.assertEquals(property2.defaultValue, null);
Assert.assertEquals(property2.baseType, "String"); Assert.assertEquals(property2.baseType, "String");
Assert.assertEquals(property2.example, "Tony"); Assert.assertEquals(property2.example, "Tony");
Assert.assertTrue(property2.hasMore); Assert.assertTrue(property2.hasMore);
@@ -126,7 +126,7 @@ public class JavaModelTest {
Assert.assertEquals(property3.setter, "setCreatedAt"); Assert.assertEquals(property3.setter, "setCreatedAt");
Assert.assertEquals(property3.dataType, "Date"); Assert.assertEquals(property3.dataType, "Date");
Assert.assertEquals(property3.name, "createdAt"); Assert.assertEquals(property3.name, "createdAt");
Assert.assertEquals(property3.defaultValue, "null"); Assert.assertEquals(property3.defaultValue, null);
Assert.assertEquals(property3.baseType, "Date"); Assert.assertEquals(property3.baseType, "Date");
Assert.assertFalse(property3.hasMore); Assert.assertFalse(property3.hasMore);
Assert.assertFalse(property3.required); Assert.assertFalse(property3.required);
@@ -261,7 +261,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setAtSomeColonRestrictedPercentCharactersHashToExclamationHandlePlus"); Assert.assertEquals(property.setter, "setAtSomeColonRestrictedPercentCharactersHashToExclamationHandlePlus");
Assert.assertEquals(property.dataType, "Boolean"); Assert.assertEquals(property.dataType, "Boolean");
Assert.assertEquals(property.name, "atSomeColonRestrictedPercentCharactersHashToExclamationHandlePlus"); Assert.assertEquals(property.name, "atSomeColonRestrictedPercentCharactersHashToExclamationHandlePlus");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "Boolean"); Assert.assertEquals(property.baseType, "Boolean");
Assert.assertFalse(property.required); Assert.assertFalse(property.required);
Assert.assertTrue(property.isNotContainer); Assert.assertTrue(property.isNotContainer);
@@ -286,6 +286,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setChildren"); Assert.assertEquals(property.setter, "setChildren");
Assert.assertEquals(property.dataType, "Children"); Assert.assertEquals(property.dataType, "Children");
Assert.assertEquals(property.name, "children"); Assert.assertEquals(property.name, "children");
// "null" as default value for model
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, "null");
Assert.assertEquals(property.baseType, "Children"); Assert.assertEquals(property.baseType, "Children");
Assert.assertFalse(property.required); Assert.assertFalse(property.required);
@@ -445,7 +446,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setNAME"); Assert.assertEquals(property.setter, "setNAME");
Assert.assertEquals(property.dataType, "String"); Assert.assertEquals(property.dataType, "String");
Assert.assertEquals(property.name, "NAME"); Assert.assertEquals(property.name, "NAME");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "String"); Assert.assertEquals(property.baseType, "String");
Assert.assertFalse(property.hasMore); Assert.assertFalse(property.hasMore);
Assert.assertTrue(property.required); Assert.assertTrue(property.required);
@@ -471,7 +472,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setPId"); Assert.assertEquals(property.setter, "setPId");
Assert.assertEquals(property.dataType, "String"); Assert.assertEquals(property.dataType, "String");
Assert.assertEquals(property.name, "pId"); Assert.assertEquals(property.name, "pId");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "String"); Assert.assertEquals(property.baseType, "String");
Assert.assertFalse(property.hasMore); Assert.assertFalse(property.hasMore);
Assert.assertTrue(property.required); Assert.assertTrue(property.required);
@@ -497,7 +498,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setAtTName"); Assert.assertEquals(property.setter, "setAtTName");
Assert.assertEquals(property.dataType, "String"); Assert.assertEquals(property.dataType, "String");
Assert.assertEquals(property.name, "atTName"); Assert.assertEquals(property.name, "atTName");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "String"); Assert.assertEquals(property.baseType, "String");
Assert.assertFalse(property.hasMore); Assert.assertFalse(property.hasMore);
Assert.assertTrue(property.required); Assert.assertTrue(property.required);
@@ -559,7 +560,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setInputBinaryData"); Assert.assertEquals(property.setter, "setInputBinaryData");
Assert.assertEquals(property.dataType, "byte[]"); Assert.assertEquals(property.dataType, "byte[]");
Assert.assertEquals(property.name, "inputBinaryData"); Assert.assertEquals(property.name, "inputBinaryData");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "byte[]"); Assert.assertEquals(property.baseType, "byte[]");
Assert.assertFalse(property.hasMore); Assert.assertFalse(property.hasMore);
Assert.assertFalse(property.required); Assert.assertFalse(property.required);
@@ -584,7 +585,7 @@ public class JavaModelTest {
Assert.assertEquals(property.setter, "setU"); Assert.assertEquals(property.setter, "setU");
Assert.assertEquals(property.dataType, "String"); Assert.assertEquals(property.dataType, "String");
Assert.assertEquals(property.name, "u"); Assert.assertEquals(property.name, "u");
Assert.assertEquals(property.defaultValue, "null"); Assert.assertEquals(property.defaultValue, null);
Assert.assertEquals(property.baseType, "String"); Assert.assertEquals(property.baseType, "String");
Assert.assertFalse(property.hasMore); Assert.assertFalse(property.hasMore);
Assert.assertTrue(property.isNotContainer); Assert.assertTrue(property.isNotContainer);
@@ -713,7 +714,7 @@ public class JavaModelTest {
Assert.assertEquals(property2.setter, "setName"); Assert.assertEquals(property2.setter, "setName");
Assert.assertEquals(property2.dataType, "String"); Assert.assertEquals(property2.dataType, "String");
Assert.assertEquals(property2.name, "name"); Assert.assertEquals(property2.name, "name");
Assert.assertEquals(property2.defaultValue, "null"); Assert.assertEquals(property2.defaultValue, null);
Assert.assertEquals(property2.baseType, "String"); Assert.assertEquals(property2.baseType, "String");
Assert.assertEquals(property2.example, "Tony"); Assert.assertEquals(property2.example, "Tony");
Assert.assertTrue(property2.hasMore); Assert.assertTrue(property2.hasMore);
@@ -729,7 +730,7 @@ public class JavaModelTest {
Assert.assertEquals(property3.setter, "setCreatedAt"); Assert.assertEquals(property3.setter, "setCreatedAt");
Assert.assertEquals(property3.dataType, "Date"); Assert.assertEquals(property3.dataType, "Date");
Assert.assertEquals(property3.name, "createdAt"); Assert.assertEquals(property3.name, "createdAt");
Assert.assertEquals(property3.defaultValue, "null"); Assert.assertEquals(property3.defaultValue, null);
Assert.assertEquals(property3.baseType, "Date"); Assert.assertEquals(property3.baseType, "Date");
Assert.assertFalse(property3.hasMore); Assert.assertFalse(property3.hasMore);
Assert.assertFalse(property3.required); Assert.assertFalse(property3.required);

View File

@@ -18,7 +18,7 @@ public interface AnotherFakeApi extends ApiClient.Api {
/** /**
* To test special tags * To test special tags
* To test special tags and operation ID starting with number * To test special tags and operation ID starting with number
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /another-fake/dummy") @RequestLine("PATCH /another-fake/dummy")

View File

@@ -25,7 +25,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer boolean types * Test serialization of outer boolean types
* @param body Input boolean as post body (optional) * @param body Input boolean as post body (optional)
* @return Boolean * @return Boolean
*/ */
@RequestLine("POST /fake/outer/boolean") @RequestLine("POST /fake/outer/boolean")
@@ -38,7 +38,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of object with outer number type * Test serialization of object with outer number type
* @param outerComposite Input composite as post body (optional) * @param outerComposite Input composite as post body (optional)
* @return OuterComposite * @return OuterComposite
*/ */
@RequestLine("POST /fake/outer/composite") @RequestLine("POST /fake/outer/composite")
@@ -51,7 +51,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer number types * Test serialization of outer number types
* @param body Input number as post body (optional) * @param body Input number as post body (optional)
* @return BigDecimal * @return BigDecimal
*/ */
@RequestLine("POST /fake/outer/number") @RequestLine("POST /fake/outer/number")
@@ -64,7 +64,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer string types * Test serialization of outer string types
* @param body Input string as post body (optional) * @param body Input string as post body (optional)
* @return String * @return String
*/ */
@RequestLine("POST /fake/outer/string") @RequestLine("POST /fake/outer/string")
@@ -77,7 +77,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* For this test, the body for this request much reference a schema named &#x60;File&#x60;. * For this test, the body for this request much reference a schema named &#x60;File&#x60;.
* @param fileSchemaTestClass (required) * @param fileSchemaTestClass (required)
*/ */
@RequestLine("PUT /fake/body-with-file-schema") @RequestLine("PUT /fake/body-with-file-schema")
@Headers({ @Headers({
@@ -89,8 +89,8 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* *
* @param query (required) * @param query (required)
* @param user (required) * @param user (required)
*/ */
@RequestLine("PUT /fake/body-with-query-params?query={query}") @RequestLine("PUT /fake/body-with-query-params?query={query}")
@Headers({ @Headers({
@@ -135,7 +135,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* To test \&quot;client\&quot; model * To test \&quot;client\&quot; model
* To test \&quot;client\&quot; model * To test \&quot;client\&quot; model
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /fake") @RequestLine("PATCH /fake")
@@ -148,20 +148,20 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* @param number None (required) * @param number None (required)
* @param _double None (required) * @param _double None (required)
* @param patternWithoutDelimiter None (required) * @param patternWithoutDelimiter None (required)
* @param _byte None (required) * @param _byte None (required)
* @param integer None (optional, default to null) * @param integer None (optional)
* @param int32 None (optional, default to null) * @param int32 None (optional)
* @param int64 None (optional, default to null) * @param int64 None (optional)
* @param _float None (optional, default to null) * @param _float None (optional)
* @param string None (optional, default to null) * @param string None (optional)
* @param binary None (optional, default to null) * @param binary None (optional)
* @param date None (optional, default to null) * @param date None (optional)
* @param dateTime None (optional, default to null) * @param dateTime None (optional)
* @param password None (optional, default to null) * @param password None (optional)
* @param paramCallback None (optional, default to null) * @param paramCallback None (optional)
*/ */
@RequestLine("POST /fake") @RequestLine("POST /fake")
@Headers({ @Headers({
@@ -173,14 +173,14 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* To test enum parameters * To test enum parameters
* To test enum parameters * To test enum parameters
* @param enumHeaderStringArray Header parameter enum test (string array) (optional) * @param enumHeaderStringArray Header parameter enum test (string array) (optional)
* @param enumHeaderString Header parameter enum test (string) (optional, default to -efg) * @param enumHeaderString Header parameter enum test (string) (optional, default to -efg)
* @param enumQueryStringArray Query parameter enum test (string array) (optional) * @param enumQueryStringArray Query parameter enum test (string array) (optional)
* @param enumQueryString Query parameter enum test (string) (optional, default to -efg) * @param enumQueryString Query parameter enum test (string) (optional, default to -efg)
* @param enumQueryInteger Query parameter enum test (double) (optional) * @param enumQueryInteger Query parameter enum test (double) (optional)
* @param enumQueryDouble Query parameter enum test (double) (optional) * @param enumQueryDouble Query parameter enum test (double) (optional)
* @param enumFormStringArray Form parameter enum test (string array) (optional, default to $) * @param enumFormStringArray Form parameter enum test (string array) (optional)
* @param enumFormString Form parameter enum test (string) (optional, default to -efg) * @param enumFormString Form parameter enum test (string) (optional, default to -efg)
*/ */
@RequestLine("GET /fake?enum_query_string_array={enumQueryStringArray}&enum_query_string={enumQueryString}&enum_query_integer={enumQueryInteger}&enum_query_double={enumQueryDouble}") @RequestLine("GET /fake?enum_query_string_array={enumQueryStringArray}&enum_query_string={enumQueryString}&enum_query_integer={enumQueryInteger}&enum_query_double={enumQueryDouble}")
@Headers({ @Headers({
@@ -202,7 +202,7 @@ public interface FakeApi extends ApiClient.Api {
* building up this map in a fluent style. * building up this map in a fluent style.
* @param enumHeaderStringArray Header parameter enum test (string array) (optional) * @param enumHeaderStringArray Header parameter enum test (string array) (optional)
* @param enumHeaderString Header parameter enum test (string) (optional, default to -efg) * @param enumHeaderString Header parameter enum test (string) (optional, default to -efg)
* @param enumFormStringArray Form parameter enum test (string array) (optional, default to $) * @param enumFormStringArray Form parameter enum test (string array) (optional)
* @param enumFormString Form parameter enum test (string) (optional, default to -efg) * @param enumFormString Form parameter enum test (string) (optional, default to -efg)
* @param queryParams Map of query parameters as name-value pairs * @param queryParams Map of query parameters as name-value pairs
* <p>The following elements may be specified in the query map:</p> * <p>The following elements may be specified in the query map:</p>
@@ -249,7 +249,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* test inline additionalProperties * test inline additionalProperties
* *
* @param requestBody request body (required) * @param requestBody request body (required)
*/ */
@RequestLine("POST /fake/inline-additionalProperties") @RequestLine("POST /fake/inline-additionalProperties")
@Headers({ @Headers({
@@ -261,8 +261,8 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* test json serialization of form data * test json serialization of form data
* *
* @param param field1 (required) * @param param field1 (required)
* @param param2 field2 (required) * @param param2 field2 (required)
*/ */
@RequestLine("GET /fake/jsonFormData") @RequestLine("GET /fake/jsonFormData")
@Headers({ @Headers({

View File

@@ -18,7 +18,7 @@ public interface FakeClassnameTags123Api extends ApiClient.Api {
/** /**
* To test class name in snake case * To test class name in snake case
* To test class name in snake case * To test class name in snake case
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /fake_classname_test") @RequestLine("PATCH /fake_classname_test")

View File

@@ -20,7 +20,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Add a new pet to the store * Add a new pet to the store
* *
* @param pet Pet object that needs to be added to the store (required) * @param pet Pet object that needs to be added to the store (required)
*/ */
@RequestLine("POST /pet") @RequestLine("POST /pet")
@Headers({ @Headers({
@@ -32,8 +32,8 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Deletes a pet * Deletes a pet
* *
* @param petId Pet id to delete (required) * @param petId Pet id to delete (required)
* @param apiKey (optional) * @param apiKey (optional)
*/ */
@RequestLine("DELETE /pet/{petId}") @RequestLine("DELETE /pet/{petId}")
@Headers({ @Headers({
@@ -45,7 +45,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Finds Pets by status * Finds Pets by status
* Multiple status values can be provided with comma separated strings * Multiple status values can be provided with comma separated strings
* @param status Status values that need to be considered for filter (required) * @param status Status values that need to be considered for filter (required)
* @return List&lt;Pet&gt; * @return List&lt;Pet&gt;
*/ */
@RequestLine("GET /pet/findByStatus?status={status}") @RequestLine("GET /pet/findByStatus?status={status}")
@@ -89,7 +89,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Finds Pets by tags * Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. * Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param tags Tags to filter by (required) * @param tags Tags to filter by (required)
* @return List&lt;Pet&gt; * @return List&lt;Pet&gt;
*/ */
@RequestLine("GET /pet/findByTags?tags={tags}") @RequestLine("GET /pet/findByTags?tags={tags}")
@@ -133,7 +133,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Find pet by ID * Find pet by ID
* Returns a single pet * Returns a single pet
* @param petId ID of pet to return (required) * @param petId ID of pet to return (required)
* @return Pet * @return Pet
*/ */
@RequestLine("GET /pet/{petId}") @RequestLine("GET /pet/{petId}")
@@ -145,7 +145,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Update an existing pet * Update an existing pet
* *
* @param pet Pet object that needs to be added to the store (required) * @param pet Pet object that needs to be added to the store (required)
*/ */
@RequestLine("PUT /pet") @RequestLine("PUT /pet")
@Headers({ @Headers({
@@ -157,9 +157,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Updates a pet in the store with form data * Updates a pet in the store with form data
* *
* @param petId ID of pet that needs to be updated (required) * @param petId ID of pet that needs to be updated (required)
* @param name Updated name of the pet (optional, default to null) * @param name Updated name of the pet (optional)
* @param status Updated status of the pet (optional, default to null) * @param status Updated status of the pet (optional)
*/ */
@RequestLine("POST /pet/{petId}") @RequestLine("POST /pet/{petId}")
@Headers({ @Headers({
@@ -171,9 +171,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* uploads an image * uploads an image
* *
* @param petId ID of pet to update (required) * @param petId ID of pet to update (required)
* @param additionalMetadata Additional data to pass to server (optional, default to null) * @param additionalMetadata Additional data to pass to server (optional)
* @param file file to upload (optional, default to null) * @param file file to upload (optional)
* @return ModelApiResponse * @return ModelApiResponse
*/ */
@RequestLine("POST /pet/{petId}/uploadImage") @RequestLine("POST /pet/{petId}/uploadImage")
@@ -186,9 +186,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* uploads an image (required) * uploads an image (required)
* *
* @param petId ID of pet to update (required) * @param petId ID of pet to update (required)
* @param requiredFile file to upload (required) * @param requiredFile file to upload (required)
* @param additionalMetadata Additional data to pass to server (optional, default to null) * @param additionalMetadata Additional data to pass to server (optional)
* @return ModelApiResponse * @return ModelApiResponse
*/ */
@RequestLine("POST /fake/{petId}/uploadImageWithRequiredFile") @RequestLine("POST /fake/{petId}/uploadImageWithRequiredFile")

View File

@@ -18,7 +18,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Delete purchase order by ID * Delete purchase order by ID
* For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors * For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted (required) * @param orderId ID of the order that needs to be deleted (required)
*/ */
@RequestLine("DELETE /store/order/{orderId}") @RequestLine("DELETE /store/order/{orderId}")
@Headers({ @Headers({
@@ -40,7 +40,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Find purchase order by ID * Find purchase order by ID
* For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions * For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched (required) * @param orderId ID of pet that needs to be fetched (required)
* @return Order * @return Order
*/ */
@RequestLine("GET /store/order/{orderId}") @RequestLine("GET /store/order/{orderId}")
@@ -52,7 +52,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Place an order for a pet * Place an order for a pet
* *
* @param order order placed for purchasing the pet (required) * @param order order placed for purchasing the pet (required)
* @return Order * @return Order
*/ */
@RequestLine("POST /store/order") @RequestLine("POST /store/order")

View File

@@ -18,7 +18,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Create user * Create user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param user Created user object (required) * @param user Created user object (required)
*/ */
@RequestLine("POST /user") @RequestLine("POST /user")
@Headers({ @Headers({
@@ -30,7 +30,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Creates list of users with given input array * Creates list of users with given input array
* *
* @param user List of user object (required) * @param user List of user object (required)
*/ */
@RequestLine("POST /user/createWithArray") @RequestLine("POST /user/createWithArray")
@Headers({ @Headers({
@@ -42,7 +42,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Creates list of users with given input array * Creates list of users with given input array
* *
* @param user List of user object (required) * @param user List of user object (required)
*/ */
@RequestLine("POST /user/createWithList") @RequestLine("POST /user/createWithList")
@Headers({ @Headers({
@@ -54,7 +54,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Delete user * Delete user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param username The name that needs to be deleted (required) * @param username The name that needs to be deleted (required)
*/ */
@RequestLine("DELETE /user/{username}") @RequestLine("DELETE /user/{username}")
@Headers({ @Headers({
@@ -65,7 +65,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Get user by user name * Get user by user name
* *
* @param username The name that needs to be fetched. Use user1 for testing. (required) * @param username The name that needs to be fetched. Use user1 for testing. (required)
* @return User * @return User
*/ */
@RequestLine("GET /user/{username}") @RequestLine("GET /user/{username}")
@@ -77,8 +77,8 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Logs user into the system * Logs user into the system
* *
* @param username The user name for login (required) * @param username The user name for login (required)
* @param password The password for login in clear text (required) * @param password The password for login in clear text (required)
* @return String * @return String
*/ */
@RequestLine("GET /user/login?username={username}&password={password}") @RequestLine("GET /user/login?username={username}&password={password}")
@@ -137,8 +137,8 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Updated user * Updated user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param username name that need to be deleted (required) * @param username name that need to be deleted (required)
* @param user Updated user object (required) * @param user Updated user object (required)
*/ */
@RequestLine("PUT /user/{username}") @RequestLine("PUT /user/{username}")
@Headers({ @Headers({

View File

@@ -35,7 +35,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Animal { public class Animal {
@JsonProperty("className") @JsonProperty("className")
private String className = null; private String className;
@JsonProperty("color") @JsonProperty("color")
private String color = "red"; private String color = "red";

View File

@@ -27,22 +27,22 @@ import io.swagger.annotations.ApiModelProperty;
public class Capitalization { public class Capitalization {
@JsonProperty("smallCamel") @JsonProperty("smallCamel")
private String smallCamel = null; private String smallCamel;
@JsonProperty("CapitalCamel") @JsonProperty("CapitalCamel")
private String capitalCamel = null; private String capitalCamel;
@JsonProperty("small_Snake") @JsonProperty("small_Snake")
private String smallSnake = null; private String smallSnake;
@JsonProperty("Capital_Snake") @JsonProperty("Capital_Snake")
private String capitalSnake = null; private String capitalSnake;
@JsonProperty("SCA_ETH_Flow_Points") @JsonProperty("SCA_ETH_Flow_Points")
private String scAETHFlowPoints = null; private String scAETHFlowPoints;
@JsonProperty("ATT_NAME") @JsonProperty("ATT_NAME")
private String ATT_NAME = null; private String ATT_NAME;
public Capitalization smallCamel(String smallCamel) { public Capitalization smallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Cat extends Animal { public class Cat extends Animal {
@JsonProperty("declawed") @JsonProperty("declawed")
private Boolean declawed = null; private Boolean declawed;
public Cat declawed(Boolean declawed) { public Cat declawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Category { public class Category {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
public Category id(Long id) { public Category id(Long id) {
this.id = id; this.id = id;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ClassModel { public class ClassModel {
@JsonProperty("_class") @JsonProperty("_class")
private String propertyClass = null; private String propertyClass;
public ClassModel propertyClass(String propertyClass) { public ClassModel propertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;

View File

@@ -27,7 +27,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Client { public class Client {
@JsonProperty("client") @JsonProperty("client")
private String client = null; private String client;
public Client client(String client) { public Client client(String client) {
this.client = client; this.client = client;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Dog extends Animal { public class Dog extends Animal {
@JsonProperty("breed") @JsonProperty("breed")
private String breed = null; private String breed;
public Dog breed(String breed) { public Dog breed(String breed) {
this.breed = breed; this.breed = breed;

View File

@@ -64,7 +64,7 @@ public class EnumArrays {
} }
@JsonProperty("just_symbol") @JsonProperty("just_symbol")
private JustSymbolEnum justSymbol = null; private JustSymbolEnum justSymbol;
/** /**
* Gets or Sets arrayEnum * Gets or Sets arrayEnum

View File

@@ -65,7 +65,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string") @JsonProperty("enum_string")
private EnumStringEnum enumString = null; private EnumStringEnum enumString;
/** /**
* Gets or Sets enumStringRequired * Gets or Sets enumStringRequired
@@ -105,7 +105,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string_required") @JsonProperty("enum_string_required")
private EnumStringRequiredEnum enumStringRequired = null; private EnumStringRequiredEnum enumStringRequired;
/** /**
* Gets or Sets enumInteger * Gets or Sets enumInteger
@@ -143,7 +143,7 @@ public class EnumTest {
} }
@JsonProperty("enum_integer") @JsonProperty("enum_integer")
private EnumIntegerEnum enumInteger = null; private EnumIntegerEnum enumInteger;
/** /**
* Gets or Sets enumNumber * Gets or Sets enumNumber
@@ -181,7 +181,7 @@ public class EnumTest {
} }
@JsonProperty("enum_number") @JsonProperty("enum_number")
private EnumNumberEnum enumNumber = null; private EnumNumberEnum enumNumber;
@JsonProperty("outerEnum") @JsonProperty("outerEnum")
private OuterEnum outerEnum = null; private OuterEnum outerEnum = null;

View File

@@ -32,43 +32,43 @@ import org.threeten.bp.OffsetDateTime;
public class FormatTest { public class FormatTest {
@JsonProperty("integer") @JsonProperty("integer")
private Integer integer = null; private Integer integer;
@JsonProperty("int32") @JsonProperty("int32")
private Integer int32 = null; private Integer int32;
@JsonProperty("int64") @JsonProperty("int64")
private Long int64 = null; private Long int64;
@JsonProperty("number") @JsonProperty("number")
private BigDecimal number = null; private BigDecimal number;
@JsonProperty("float") @JsonProperty("float")
private Float _float = null; private Float _float;
@JsonProperty("double") @JsonProperty("double")
private Double _double = null; private Double _double;
@JsonProperty("string") @JsonProperty("string")
private String string = null; private String string;
@JsonProperty("byte") @JsonProperty("byte")
private byte[] _byte = null; private byte[] _byte;
@JsonProperty("binary") @JsonProperty("binary")
private File binary = null; private File binary;
@JsonProperty("date") @JsonProperty("date")
private LocalDate date = null; private LocalDate date;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("password") @JsonProperty("password")
private String password = null; private String password;
public FormatTest integer(Integer integer) { public FormatTest integer(Integer integer) {
this.integer = integer; this.integer = integer;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class HasOnlyReadOnly { public class HasOnlyReadOnly {
@JsonProperty("bar") @JsonProperty("bar")
private String bar = null; private String bar;
@JsonProperty("foo") @JsonProperty("foo")
private String foo = null; private String foo;
/** /**
* Get bar * Get bar

View File

@@ -33,10 +33,10 @@ import org.threeten.bp.OffsetDateTime;
public class MixedPropertiesAndAdditionalPropertiesClass { public class MixedPropertiesAndAdditionalPropertiesClass {
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("map") @JsonProperty("map")
private Map<String, Animal> map = null; private Map<String, Animal> map = null;

View File

@@ -28,10 +28,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Model200Response { public class Model200Response {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("class") @JsonProperty("class")
private String propertyClass = null; private String propertyClass;
public Model200Response name(Integer name) { public Model200Response name(Integer name) {
this.name = name; this.name = name;

View File

@@ -27,13 +27,13 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelApiResponse { public class ModelApiResponse {
@JsonProperty("code") @JsonProperty("code")
private Integer code = null; private Integer code;
@JsonProperty("type") @JsonProperty("type")
private String type = null; private String type;
@JsonProperty("message") @JsonProperty("message")
private String message = null; private String message;
public ModelApiResponse code(Integer code) { public ModelApiResponse code(Integer code) {
this.code = code; this.code = code;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelReturn { public class ModelReturn {
@JsonProperty("return") @JsonProperty("return")
private Integer _return = null; private Integer _return;
public ModelReturn _return(Integer _return) { public ModelReturn _return(Integer _return) {
this._return = _return; this._return = _return;

View File

@@ -28,16 +28,16 @@ import io.swagger.annotations.ApiModelProperty;
public class Name { public class Name {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("snake_case") @JsonProperty("snake_case")
private Integer snakeCase = null; private Integer snakeCase;
@JsonProperty("property") @JsonProperty("property")
private String property = null; private String property;
@JsonProperty("123Number") @JsonProperty("123Number")
private Integer _123number = null; private Integer _123number;
public Name name(Integer name) { public Name name(Integer name) {
this.name = name; this.name = name;

View File

@@ -28,7 +28,7 @@ import java.math.BigDecimal;
public class NumberOnly { public class NumberOnly {
@JsonProperty("JustNumber") @JsonProperty("JustNumber")
private BigDecimal justNumber = null; private BigDecimal justNumber;
public NumberOnly justNumber(BigDecimal justNumber) { public NumberOnly justNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;

View File

@@ -28,16 +28,16 @@ import org.threeten.bp.OffsetDateTime;
public class Order { public class Order {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("petId") @JsonProperty("petId")
private Long petId = null; private Long petId;
@JsonProperty("quantity") @JsonProperty("quantity")
private Integer quantity = null; private Integer quantity;
@JsonProperty("shipDate") @JsonProperty("shipDate")
private OffsetDateTime shipDate = null; private OffsetDateTime shipDate;
/** /**
* Order Status * Order Status
@@ -77,7 +77,7 @@ public class Order {
} }
@JsonProperty("status") @JsonProperty("status")
private StatusEnum status = null; private StatusEnum status;
@JsonProperty("complete") @JsonProperty("complete")
private Boolean complete = false; private Boolean complete = false;

View File

@@ -28,13 +28,13 @@ import java.math.BigDecimal;
public class OuterComposite { public class OuterComposite {
@JsonProperty("my_number") @JsonProperty("my_number")
private BigDecimal myNumber = null; private BigDecimal myNumber;
@JsonProperty("my_string") @JsonProperty("my_string")
private String myString = null; private String myString;
@JsonProperty("my_boolean") @JsonProperty("my_boolean")
private Boolean myBoolean = null; private Boolean myBoolean;
public OuterComposite myNumber(BigDecimal myNumber) { public OuterComposite myNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;

View File

@@ -31,13 +31,13 @@ import org.openapitools.client.model.Tag;
public class Pet { public class Pet {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("category") @JsonProperty("category")
private Category category = null; private Category category = null;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
@JsonProperty("photoUrls") @JsonProperty("photoUrls")
private List<String> photoUrls = new ArrayList<String>(); private List<String> photoUrls = new ArrayList<String>();
@@ -83,7 +83,7 @@ public class Pet {
} }
@JsonProperty("status") @JsonProperty("status")
private StatusEnum status = null; private StatusEnum status;
public Pet id(Long id) { public Pet id(Long id) {
this.id = id; this.id = id;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class ReadOnlyFirst { public class ReadOnlyFirst {
@JsonProperty("bar") @JsonProperty("bar")
private String bar = null; private String bar;
@JsonProperty("baz") @JsonProperty("baz")
private String baz = null; private String baz;
/** /**
* Get bar * Get bar

View File

@@ -27,7 +27,7 @@ import io.swagger.annotations.ApiModelProperty;
public class SpecialModelName { public class SpecialModelName {
@JsonProperty("$special[property.name]") @JsonProperty("$special[property.name]")
private Long $specialPropertyName = null; private Long $specialPropertyName;
public SpecialModelName $specialPropertyName(Long $specialPropertyName) { public SpecialModelName $specialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Tag { public class Tag {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
public Tag id(Long id) { public Tag id(Long id) {
this.id = id; this.id = id;

View File

@@ -27,28 +27,28 @@ import io.swagger.annotations.ApiModelProperty;
public class User { public class User {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("username") @JsonProperty("username")
private String username = null; private String username;
@JsonProperty("firstName") @JsonProperty("firstName")
private String firstName = null; private String firstName;
@JsonProperty("lastName") @JsonProperty("lastName")
private String lastName = null; private String lastName;
@JsonProperty("email") @JsonProperty("email")
private String email = null; private String email;
@JsonProperty("password") @JsonProperty("password")
private String password = null; private String password;
@JsonProperty("phone") @JsonProperty("phone")
private String phone = null; private String phone;
@JsonProperty("userStatus") @JsonProperty("userStatus")
private Integer userStatus = null; private Integer userStatus;
public User id(Long id) { public User id(Long id) {
this.id = id; this.id = id;

View File

@@ -18,7 +18,7 @@ public interface AnotherFakeApi extends ApiClient.Api {
/** /**
* To test special tags * To test special tags
* To test special tags and operation ID starting with number * To test special tags and operation ID starting with number
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /another-fake/dummy") @RequestLine("PATCH /another-fake/dummy")

View File

@@ -25,7 +25,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer boolean types * Test serialization of outer boolean types
* @param body Input boolean as post body (optional) * @param body Input boolean as post body (optional)
* @return Boolean * @return Boolean
*/ */
@RequestLine("POST /fake/outer/boolean") @RequestLine("POST /fake/outer/boolean")
@@ -38,7 +38,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of object with outer number type * Test serialization of object with outer number type
* @param outerComposite Input composite as post body (optional) * @param outerComposite Input composite as post body (optional)
* @return OuterComposite * @return OuterComposite
*/ */
@RequestLine("POST /fake/outer/composite") @RequestLine("POST /fake/outer/composite")
@@ -51,7 +51,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer number types * Test serialization of outer number types
* @param body Input number as post body (optional) * @param body Input number as post body (optional)
* @return BigDecimal * @return BigDecimal
*/ */
@RequestLine("POST /fake/outer/number") @RequestLine("POST /fake/outer/number")
@@ -64,7 +64,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* Test serialization of outer string types * Test serialization of outer string types
* @param body Input string as post body (optional) * @param body Input string as post body (optional)
* @return String * @return String
*/ */
@RequestLine("POST /fake/outer/string") @RequestLine("POST /fake/outer/string")
@@ -77,7 +77,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* For this test, the body for this request much reference a schema named &#x60;File&#x60;. * For this test, the body for this request much reference a schema named &#x60;File&#x60;.
* @param fileSchemaTestClass (required) * @param fileSchemaTestClass (required)
*/ */
@RequestLine("PUT /fake/body-with-file-schema") @RequestLine("PUT /fake/body-with-file-schema")
@Headers({ @Headers({
@@ -89,8 +89,8 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* *
* *
* @param query (required) * @param query (required)
* @param user (required) * @param user (required)
*/ */
@RequestLine("PUT /fake/body-with-query-params?query={query}") @RequestLine("PUT /fake/body-with-query-params?query={query}")
@Headers({ @Headers({
@@ -135,7 +135,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* To test \&quot;client\&quot; model * To test \&quot;client\&quot; model
* To test \&quot;client\&quot; model * To test \&quot;client\&quot; model
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /fake") @RequestLine("PATCH /fake")
@@ -148,20 +148,20 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* @param number None (required) * @param number None (required)
* @param _double None (required) * @param _double None (required)
* @param patternWithoutDelimiter None (required) * @param patternWithoutDelimiter None (required)
* @param _byte None (required) * @param _byte None (required)
* @param integer None (optional, default to null) * @param integer None (optional)
* @param int32 None (optional, default to null) * @param int32 None (optional)
* @param int64 None (optional, default to null) * @param int64 None (optional)
* @param _float None (optional, default to null) * @param _float None (optional)
* @param string None (optional, default to null) * @param string None (optional)
* @param binary None (optional, default to null) * @param binary None (optional)
* @param date None (optional, default to null) * @param date None (optional)
* @param dateTime None (optional, default to null) * @param dateTime None (optional)
* @param password None (optional, default to null) * @param password None (optional)
* @param paramCallback None (optional, default to null) * @param paramCallback None (optional)
*/ */
@RequestLine("POST /fake") @RequestLine("POST /fake")
@Headers({ @Headers({
@@ -173,14 +173,14 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* To test enum parameters * To test enum parameters
* To test enum parameters * To test enum parameters
* @param enumHeaderStringArray Header parameter enum test (string array) (optional) * @param enumHeaderStringArray Header parameter enum test (string array) (optional)
* @param enumHeaderString Header parameter enum test (string) (optional, default to -efg) * @param enumHeaderString Header parameter enum test (string) (optional, default to -efg)
* @param enumQueryStringArray Query parameter enum test (string array) (optional) * @param enumQueryStringArray Query parameter enum test (string array) (optional)
* @param enumQueryString Query parameter enum test (string) (optional, default to -efg) * @param enumQueryString Query parameter enum test (string) (optional, default to -efg)
* @param enumQueryInteger Query parameter enum test (double) (optional) * @param enumQueryInteger Query parameter enum test (double) (optional)
* @param enumQueryDouble Query parameter enum test (double) (optional) * @param enumQueryDouble Query parameter enum test (double) (optional)
* @param enumFormStringArray Form parameter enum test (string array) (optional, default to $) * @param enumFormStringArray Form parameter enum test (string array) (optional)
* @param enumFormString Form parameter enum test (string) (optional, default to -efg) * @param enumFormString Form parameter enum test (string) (optional, default to -efg)
*/ */
@RequestLine("GET /fake?enum_query_string_array={enumQueryStringArray}&enum_query_string={enumQueryString}&enum_query_integer={enumQueryInteger}&enum_query_double={enumQueryDouble}") @RequestLine("GET /fake?enum_query_string_array={enumQueryStringArray}&enum_query_string={enumQueryString}&enum_query_integer={enumQueryInteger}&enum_query_double={enumQueryDouble}")
@Headers({ @Headers({
@@ -202,7 +202,7 @@ public interface FakeApi extends ApiClient.Api {
* building up this map in a fluent style. * building up this map in a fluent style.
* @param enumHeaderStringArray Header parameter enum test (string array) (optional) * @param enumHeaderStringArray Header parameter enum test (string array) (optional)
* @param enumHeaderString Header parameter enum test (string) (optional, default to -efg) * @param enumHeaderString Header parameter enum test (string) (optional, default to -efg)
* @param enumFormStringArray Form parameter enum test (string array) (optional, default to $) * @param enumFormStringArray Form parameter enum test (string array) (optional)
* @param enumFormString Form parameter enum test (string) (optional, default to -efg) * @param enumFormString Form parameter enum test (string) (optional, default to -efg)
* @param queryParams Map of query parameters as name-value pairs * @param queryParams Map of query parameters as name-value pairs
* <p>The following elements may be specified in the query map:</p> * <p>The following elements may be specified in the query map:</p>
@@ -249,7 +249,7 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* test inline additionalProperties * test inline additionalProperties
* *
* @param requestBody request body (required) * @param requestBody request body (required)
*/ */
@RequestLine("POST /fake/inline-additionalProperties") @RequestLine("POST /fake/inline-additionalProperties")
@Headers({ @Headers({
@@ -261,8 +261,8 @@ public interface FakeApi extends ApiClient.Api {
/** /**
* test json serialization of form data * test json serialization of form data
* *
* @param param field1 (required) * @param param field1 (required)
* @param param2 field2 (required) * @param param2 field2 (required)
*/ */
@RequestLine("GET /fake/jsonFormData") @RequestLine("GET /fake/jsonFormData")
@Headers({ @Headers({

View File

@@ -18,7 +18,7 @@ public interface FakeClassnameTags123Api extends ApiClient.Api {
/** /**
* To test class name in snake case * To test class name in snake case
* To test class name in snake case * To test class name in snake case
* @param client client model (required) * @param client client model (required)
* @return Client * @return Client
*/ */
@RequestLine("PATCH /fake_classname_test") @RequestLine("PATCH /fake_classname_test")

View File

@@ -20,7 +20,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Add a new pet to the store * Add a new pet to the store
* *
* @param pet Pet object that needs to be added to the store (required) * @param pet Pet object that needs to be added to the store (required)
*/ */
@RequestLine("POST /pet") @RequestLine("POST /pet")
@Headers({ @Headers({
@@ -32,8 +32,8 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Deletes a pet * Deletes a pet
* *
* @param petId Pet id to delete (required) * @param petId Pet id to delete (required)
* @param apiKey (optional) * @param apiKey (optional)
*/ */
@RequestLine("DELETE /pet/{petId}") @RequestLine("DELETE /pet/{petId}")
@Headers({ @Headers({
@@ -45,7 +45,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Finds Pets by status * Finds Pets by status
* Multiple status values can be provided with comma separated strings * Multiple status values can be provided with comma separated strings
* @param status Status values that need to be considered for filter (required) * @param status Status values that need to be considered for filter (required)
* @return List&lt;Pet&gt; * @return List&lt;Pet&gt;
*/ */
@RequestLine("GET /pet/findByStatus?status={status}") @RequestLine("GET /pet/findByStatus?status={status}")
@@ -89,7 +89,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Finds Pets by tags * Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. * Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param tags Tags to filter by (required) * @param tags Tags to filter by (required)
* @return List&lt;Pet&gt; * @return List&lt;Pet&gt;
*/ */
@RequestLine("GET /pet/findByTags?tags={tags}") @RequestLine("GET /pet/findByTags?tags={tags}")
@@ -133,7 +133,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Find pet by ID * Find pet by ID
* Returns a single pet * Returns a single pet
* @param petId ID of pet to return (required) * @param petId ID of pet to return (required)
* @return Pet * @return Pet
*/ */
@RequestLine("GET /pet/{petId}") @RequestLine("GET /pet/{petId}")
@@ -145,7 +145,7 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Update an existing pet * Update an existing pet
* *
* @param pet Pet object that needs to be added to the store (required) * @param pet Pet object that needs to be added to the store (required)
*/ */
@RequestLine("PUT /pet") @RequestLine("PUT /pet")
@Headers({ @Headers({
@@ -157,9 +157,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* Updates a pet in the store with form data * Updates a pet in the store with form data
* *
* @param petId ID of pet that needs to be updated (required) * @param petId ID of pet that needs to be updated (required)
* @param name Updated name of the pet (optional, default to null) * @param name Updated name of the pet (optional)
* @param status Updated status of the pet (optional, default to null) * @param status Updated status of the pet (optional)
*/ */
@RequestLine("POST /pet/{petId}") @RequestLine("POST /pet/{petId}")
@Headers({ @Headers({
@@ -171,9 +171,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* uploads an image * uploads an image
* *
* @param petId ID of pet to update (required) * @param petId ID of pet to update (required)
* @param additionalMetadata Additional data to pass to server (optional, default to null) * @param additionalMetadata Additional data to pass to server (optional)
* @param file file to upload (optional, default to null) * @param file file to upload (optional)
* @return ModelApiResponse * @return ModelApiResponse
*/ */
@RequestLine("POST /pet/{petId}/uploadImage") @RequestLine("POST /pet/{petId}/uploadImage")
@@ -186,9 +186,9 @@ public interface PetApi extends ApiClient.Api {
/** /**
* uploads an image (required) * uploads an image (required)
* *
* @param petId ID of pet to update (required) * @param petId ID of pet to update (required)
* @param requiredFile file to upload (required) * @param requiredFile file to upload (required)
* @param additionalMetadata Additional data to pass to server (optional, default to null) * @param additionalMetadata Additional data to pass to server (optional)
* @return ModelApiResponse * @return ModelApiResponse
*/ */
@RequestLine("POST /fake/{petId}/uploadImageWithRequiredFile") @RequestLine("POST /fake/{petId}/uploadImageWithRequiredFile")

View File

@@ -18,7 +18,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Delete purchase order by ID * Delete purchase order by ID
* For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors * For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
* @param orderId ID of the order that needs to be deleted (required) * @param orderId ID of the order that needs to be deleted (required)
*/ */
@RequestLine("DELETE /store/order/{orderId}") @RequestLine("DELETE /store/order/{orderId}")
@Headers({ @Headers({
@@ -40,7 +40,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Find purchase order by ID * Find purchase order by ID
* For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions * For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions
* @param orderId ID of pet that needs to be fetched (required) * @param orderId ID of pet that needs to be fetched (required)
* @return Order * @return Order
*/ */
@RequestLine("GET /store/order/{orderId}") @RequestLine("GET /store/order/{orderId}")
@@ -52,7 +52,7 @@ public interface StoreApi extends ApiClient.Api {
/** /**
* Place an order for a pet * Place an order for a pet
* *
* @param order order placed for purchasing the pet (required) * @param order order placed for purchasing the pet (required)
* @return Order * @return Order
*/ */
@RequestLine("POST /store/order") @RequestLine("POST /store/order")

View File

@@ -18,7 +18,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Create user * Create user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param user Created user object (required) * @param user Created user object (required)
*/ */
@RequestLine("POST /user") @RequestLine("POST /user")
@Headers({ @Headers({
@@ -30,7 +30,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Creates list of users with given input array * Creates list of users with given input array
* *
* @param user List of user object (required) * @param user List of user object (required)
*/ */
@RequestLine("POST /user/createWithArray") @RequestLine("POST /user/createWithArray")
@Headers({ @Headers({
@@ -42,7 +42,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Creates list of users with given input array * Creates list of users with given input array
* *
* @param user List of user object (required) * @param user List of user object (required)
*/ */
@RequestLine("POST /user/createWithList") @RequestLine("POST /user/createWithList")
@Headers({ @Headers({
@@ -54,7 +54,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Delete user * Delete user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param username The name that needs to be deleted (required) * @param username The name that needs to be deleted (required)
*/ */
@RequestLine("DELETE /user/{username}") @RequestLine("DELETE /user/{username}")
@Headers({ @Headers({
@@ -65,7 +65,7 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Get user by user name * Get user by user name
* *
* @param username The name that needs to be fetched. Use user1 for testing. (required) * @param username The name that needs to be fetched. Use user1 for testing. (required)
* @return User * @return User
*/ */
@RequestLine("GET /user/{username}") @RequestLine("GET /user/{username}")
@@ -77,8 +77,8 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Logs user into the system * Logs user into the system
* *
* @param username The user name for login (required) * @param username The user name for login (required)
* @param password The password for login in clear text (required) * @param password The password for login in clear text (required)
* @return String * @return String
*/ */
@RequestLine("GET /user/login?username={username}&password={password}") @RequestLine("GET /user/login?username={username}&password={password}")
@@ -137,8 +137,8 @@ public interface UserApi extends ApiClient.Api {
/** /**
* Updated user * Updated user
* This can only be done by the logged in user. * This can only be done by the logged in user.
* @param username name that need to be deleted (required) * @param username name that need to be deleted (required)
* @param user Updated user object (required) * @param user Updated user object (required)
*/ */
@RequestLine("PUT /user/{username}") @RequestLine("PUT /user/{username}")
@Headers({ @Headers({

View File

@@ -35,7 +35,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Animal { public class Animal {
@JsonProperty("className") @JsonProperty("className")
private String className = null; private String className;
@JsonProperty("color") @JsonProperty("color")
private String color = "red"; private String color = "red";

View File

@@ -27,22 +27,22 @@ import io.swagger.annotations.ApiModelProperty;
public class Capitalization { public class Capitalization {
@JsonProperty("smallCamel") @JsonProperty("smallCamel")
private String smallCamel = null; private String smallCamel;
@JsonProperty("CapitalCamel") @JsonProperty("CapitalCamel")
private String capitalCamel = null; private String capitalCamel;
@JsonProperty("small_Snake") @JsonProperty("small_Snake")
private String smallSnake = null; private String smallSnake;
@JsonProperty("Capital_Snake") @JsonProperty("Capital_Snake")
private String capitalSnake = null; private String capitalSnake;
@JsonProperty("SCA_ETH_Flow_Points") @JsonProperty("SCA_ETH_Flow_Points")
private String scAETHFlowPoints = null; private String scAETHFlowPoints;
@JsonProperty("ATT_NAME") @JsonProperty("ATT_NAME")
private String ATT_NAME = null; private String ATT_NAME;
public Capitalization smallCamel(String smallCamel) { public Capitalization smallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Cat extends Animal { public class Cat extends Animal {
@JsonProperty("declawed") @JsonProperty("declawed")
private Boolean declawed = null; private Boolean declawed;
public Cat declawed(Boolean declawed) { public Cat declawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Category { public class Category {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
public Category id(Long id) { public Category id(Long id) {
this.id = id; this.id = id;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ClassModel { public class ClassModel {
@JsonProperty("_class") @JsonProperty("_class")
private String propertyClass = null; private String propertyClass;
public ClassModel propertyClass(String propertyClass) { public ClassModel propertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;

View File

@@ -27,7 +27,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Client { public class Client {
@JsonProperty("client") @JsonProperty("client")
private String client = null; private String client;
public Client client(String client) { public Client client(String client) {
this.client = client; this.client = client;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Dog extends Animal { public class Dog extends Animal {
@JsonProperty("breed") @JsonProperty("breed")
private String breed = null; private String breed;
public Dog breed(String breed) { public Dog breed(String breed) {
this.breed = breed; this.breed = breed;

View File

@@ -64,7 +64,7 @@ public class EnumArrays {
} }
@JsonProperty("just_symbol") @JsonProperty("just_symbol")
private JustSymbolEnum justSymbol = null; private JustSymbolEnum justSymbol;
/** /**
* Gets or Sets arrayEnum * Gets or Sets arrayEnum

View File

@@ -65,7 +65,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string") @JsonProperty("enum_string")
private EnumStringEnum enumString = null; private EnumStringEnum enumString;
/** /**
* Gets or Sets enumStringRequired * Gets or Sets enumStringRequired
@@ -105,7 +105,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string_required") @JsonProperty("enum_string_required")
private EnumStringRequiredEnum enumStringRequired = null; private EnumStringRequiredEnum enumStringRequired;
/** /**
* Gets or Sets enumInteger * Gets or Sets enumInteger
@@ -143,7 +143,7 @@ public class EnumTest {
} }
@JsonProperty("enum_integer") @JsonProperty("enum_integer")
private EnumIntegerEnum enumInteger = null; private EnumIntegerEnum enumInteger;
/** /**
* Gets or Sets enumNumber * Gets or Sets enumNumber
@@ -181,7 +181,7 @@ public class EnumTest {
} }
@JsonProperty("enum_number") @JsonProperty("enum_number")
private EnumNumberEnum enumNumber = null; private EnumNumberEnum enumNumber;
@JsonProperty("outerEnum") @JsonProperty("outerEnum")
private OuterEnum outerEnum = null; private OuterEnum outerEnum = null;

View File

@@ -32,43 +32,43 @@ import org.threeten.bp.OffsetDateTime;
public class FormatTest { public class FormatTest {
@JsonProperty("integer") @JsonProperty("integer")
private Integer integer = null; private Integer integer;
@JsonProperty("int32") @JsonProperty("int32")
private Integer int32 = null; private Integer int32;
@JsonProperty("int64") @JsonProperty("int64")
private Long int64 = null; private Long int64;
@JsonProperty("number") @JsonProperty("number")
private BigDecimal number = null; private BigDecimal number;
@JsonProperty("float") @JsonProperty("float")
private Float _float = null; private Float _float;
@JsonProperty("double") @JsonProperty("double")
private Double _double = null; private Double _double;
@JsonProperty("string") @JsonProperty("string")
private String string = null; private String string;
@JsonProperty("byte") @JsonProperty("byte")
private byte[] _byte = null; private byte[] _byte;
@JsonProperty("binary") @JsonProperty("binary")
private File binary = null; private File binary;
@JsonProperty("date") @JsonProperty("date")
private LocalDate date = null; private LocalDate date;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("password") @JsonProperty("password")
private String password = null; private String password;
public FormatTest integer(Integer integer) { public FormatTest integer(Integer integer) {
this.integer = integer; this.integer = integer;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class HasOnlyReadOnly { public class HasOnlyReadOnly {
@JsonProperty("bar") @JsonProperty("bar")
private String bar = null; private String bar;
@JsonProperty("foo") @JsonProperty("foo")
private String foo = null; private String foo;
/** /**
* Get bar * Get bar

View File

@@ -33,10 +33,10 @@ import org.threeten.bp.OffsetDateTime;
public class MixedPropertiesAndAdditionalPropertiesClass { public class MixedPropertiesAndAdditionalPropertiesClass {
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("map") @JsonProperty("map")
private Map<String, Animal> map = null; private Map<String, Animal> map = null;

View File

@@ -28,10 +28,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Model200Response { public class Model200Response {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("class") @JsonProperty("class")
private String propertyClass = null; private String propertyClass;
public Model200Response name(Integer name) { public Model200Response name(Integer name) {
this.name = name; this.name = name;

View File

@@ -27,13 +27,13 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelApiResponse { public class ModelApiResponse {
@JsonProperty("code") @JsonProperty("code")
private Integer code = null; private Integer code;
@JsonProperty("type") @JsonProperty("type")
private String type = null; private String type;
@JsonProperty("message") @JsonProperty("message")
private String message = null; private String message;
public ModelApiResponse code(Integer code) { public ModelApiResponse code(Integer code) {
this.code = code; this.code = code;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelReturn { public class ModelReturn {
@JsonProperty("return") @JsonProperty("return")
private Integer _return = null; private Integer _return;
public ModelReturn _return(Integer _return) { public ModelReturn _return(Integer _return) {
this._return = _return; this._return = _return;

View File

@@ -28,16 +28,16 @@ import io.swagger.annotations.ApiModelProperty;
public class Name { public class Name {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("snake_case") @JsonProperty("snake_case")
private Integer snakeCase = null; private Integer snakeCase;
@JsonProperty("property") @JsonProperty("property")
private String property = null; private String property;
@JsonProperty("123Number") @JsonProperty("123Number")
private Integer _123number = null; private Integer _123number;
public Name name(Integer name) { public Name name(Integer name) {
this.name = name; this.name = name;

View File

@@ -28,7 +28,7 @@ import java.math.BigDecimal;
public class NumberOnly { public class NumberOnly {
@JsonProperty("JustNumber") @JsonProperty("JustNumber")
private BigDecimal justNumber = null; private BigDecimal justNumber;
public NumberOnly justNumber(BigDecimal justNumber) { public NumberOnly justNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;

View File

@@ -28,16 +28,16 @@ import org.threeten.bp.OffsetDateTime;
public class Order { public class Order {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("petId") @JsonProperty("petId")
private Long petId = null; private Long petId;
@JsonProperty("quantity") @JsonProperty("quantity")
private Integer quantity = null; private Integer quantity;
@JsonProperty("shipDate") @JsonProperty("shipDate")
private OffsetDateTime shipDate = null; private OffsetDateTime shipDate;
/** /**
* Order Status * Order Status
@@ -77,7 +77,7 @@ public class Order {
} }
@JsonProperty("status") @JsonProperty("status")
private StatusEnum status = null; private StatusEnum status;
@JsonProperty("complete") @JsonProperty("complete")
private Boolean complete = false; private Boolean complete = false;

View File

@@ -28,13 +28,13 @@ import java.math.BigDecimal;
public class OuterComposite { public class OuterComposite {
@JsonProperty("my_number") @JsonProperty("my_number")
private BigDecimal myNumber = null; private BigDecimal myNumber;
@JsonProperty("my_string") @JsonProperty("my_string")
private String myString = null; private String myString;
@JsonProperty("my_boolean") @JsonProperty("my_boolean")
private Boolean myBoolean = null; private Boolean myBoolean;
public OuterComposite myNumber(BigDecimal myNumber) { public OuterComposite myNumber(BigDecimal myNumber) {
this.myNumber = myNumber; this.myNumber = myNumber;

View File

@@ -31,13 +31,13 @@ import org.openapitools.client.model.Tag;
public class Pet { public class Pet {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("category") @JsonProperty("category")
private Category category = null; private Category category = null;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
@JsonProperty("photoUrls") @JsonProperty("photoUrls")
private List<String> photoUrls = new ArrayList<String>(); private List<String> photoUrls = new ArrayList<String>();
@@ -83,7 +83,7 @@ public class Pet {
} }
@JsonProperty("status") @JsonProperty("status")
private StatusEnum status = null; private StatusEnum status;
public Pet id(Long id) { public Pet id(Long id) {
this.id = id; this.id = id;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class ReadOnlyFirst { public class ReadOnlyFirst {
@JsonProperty("bar") @JsonProperty("bar")
private String bar = null; private String bar;
@JsonProperty("baz") @JsonProperty("baz")
private String baz = null; private String baz;
/** /**
* Get bar * Get bar

View File

@@ -27,7 +27,7 @@ import io.swagger.annotations.ApiModelProperty;
public class SpecialModelName { public class SpecialModelName {
@JsonProperty("$special[property.name]") @JsonProperty("$special[property.name]")
private Long $specialPropertyName = null; private Long $specialPropertyName;
public SpecialModelName $specialPropertyName(Long $specialPropertyName) { public SpecialModelName $specialPropertyName(Long $specialPropertyName) {
this.$specialPropertyName = $specialPropertyName; this.$specialPropertyName = $specialPropertyName;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Tag { public class Tag {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
public Tag id(Long id) { public Tag id(Long id) {
this.id = id; this.id = id;

View File

@@ -27,28 +27,28 @@ import io.swagger.annotations.ApiModelProperty;
public class User { public class User {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("username") @JsonProperty("username")
private String username = null; private String username;
@JsonProperty("firstName") @JsonProperty("firstName")
private String firstName = null; private String firstName;
@JsonProperty("lastName") @JsonProperty("lastName")
private String lastName = null; private String lastName;
@JsonProperty("email") @JsonProperty("email")
private String email = null; private String email;
@JsonProperty("password") @JsonProperty("password")
private String password = null; private String password;
@JsonProperty("phone") @JsonProperty("phone")
private String phone = null; private String phone;
@JsonProperty("userStatus") @JsonProperty("userStatus")
private Integer userStatus = null; private Integer userStatus;
public User id(Long id) { public User id(Long id) {
this.id = id; this.id = id;

View File

@@ -357,18 +357,18 @@ http_basic_test.setPassword("YOUR PASSWORD");
FakeApi apiInstance = new FakeApi(); FakeApi apiInstance = new FakeApi();
BigDecimal number = new BigDecimal(); // BigDecimal | None BigDecimal number = new BigDecimal(); // BigDecimal | None
Double _double = 3.4D; // Double | None Double _double = 3.4D; // Double | None
String patternWithoutDelimiter = "null"; // String | None String patternWithoutDelimiter = "patternWithoutDelimiter_example"; // String | None
byte[] _byte = null; // byte[] | None byte[] _byte = null; // byte[] | None
Integer integer = null; // Integer | None Integer integer = 56; // Integer | None
Integer int32 = null; // Integer | None Integer int32 = 56; // Integer | None
Long int64 = nullL; // Long | None Long int64 = 56L; // Long | None
Float _float = nullF; // Float | None Float _float = 3.4F; // Float | None
String string = "null"; // String | None String string = "string_example"; // String | None
File binary = new File("null"); // File | None File binary = new File("/path/to/file"); // File | None
LocalDate date = new LocalDate(); // LocalDate | None LocalDate date = new LocalDate(); // LocalDate | None
OffsetDateTime dateTime = new OffsetDateTime(); // OffsetDateTime | None OffsetDateTime dateTime = new OffsetDateTime(); // OffsetDateTime | None
String password = "null"; // String | None String password = "password_example"; // String | None
String paramCallback = "null"; // String | None String paramCallback = "paramCallback_example"; // String | None
try { try {
apiInstance.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback); apiInstance.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback);
} catch (ApiException e) { } catch (ApiException e) {
@@ -381,20 +381,20 @@ try {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**number** | **BigDecimal**| None | [default to null] **number** | **BigDecimal**| None |
**_double** | **Double**| None | [default to null] **_double** | **Double**| None |
**patternWithoutDelimiter** | **String**| None | [default to null] **patternWithoutDelimiter** | **String**| None |
**_byte** | **byte[]**| None | [default to null] **_byte** | **byte[]**| None |
**integer** | **Integer**| None | [optional] [default to null] **integer** | **Integer**| None | [optional]
**int32** | **Integer**| None | [optional] [default to null] **int32** | **Integer**| None | [optional]
**int64** | **Long**| None | [optional] [default to null] **int64** | **Long**| None | [optional]
**_float** | **Float**| None | [optional] [default to null] **_float** | **Float**| None | [optional]
**string** | **String**| None | [optional] [default to null] **string** | **String**| None | [optional]
**binary** | **File**| None | [optional] [default to null] **binary** | **File**| None | [optional]
**date** | **LocalDate**| None | [optional] [default to null] **date** | **LocalDate**| None | [optional]
**dateTime** | **OffsetDateTime**| None | [optional] [default to null] **dateTime** | **OffsetDateTime**| None | [optional]
**password** | **String**| None | [optional] [default to null] **password** | **String**| None | [optional]
**paramCallback** | **String**| None | [optional] [default to null] **paramCallback** | **String**| None | [optional]
### Return type ### Return type
@@ -425,9 +425,9 @@ To test enum parameters
FakeApi apiInstance = new FakeApi(); FakeApi apiInstance = new FakeApi();
List<String> enumHeaderStringArray = Arrays.asList("enumHeaderStringArray_example"); // List<String> | Header parameter enum test (string array) List<String> enumHeaderStringArray = Arrays.asList("$"); // List<String> | Header parameter enum test (string array)
String enumHeaderString = "-efg"; // String | Header parameter enum test (string) String enumHeaderString = "-efg"; // String | Header parameter enum test (string)
List<String> enumQueryStringArray = Arrays.asList("enumQueryStringArray_example"); // List<String> | Query parameter enum test (string array) List<String> enumQueryStringArray = Arrays.asList("$"); // List<String> | Query parameter enum test (string array)
String enumQueryString = "-efg"; // String | Query parameter enum test (string) String enumQueryString = "-efg"; // String | Query parameter enum test (string)
Integer enumQueryInteger = 56; // Integer | Query parameter enum test (double) Integer enumQueryInteger = 56; // Integer | Query parameter enum test (double)
Double enumQueryDouble = 3.4D; // Double | Query parameter enum test (double) Double enumQueryDouble = 3.4D; // Double | Query parameter enum test (double)
@@ -451,7 +451,7 @@ Name | Type | Description | Notes
**enumQueryString** | **String**| Query parameter enum test (string) | [optional] [default to -efg] [enum: _abc, -efg, (xyz)] **enumQueryString** | **String**| Query parameter enum test (string) | [optional] [default to -efg] [enum: _abc, -efg, (xyz)]
**enumQueryInteger** | **Integer**| Query parameter enum test (double) | [optional] [enum: 1, -2] **enumQueryInteger** | **Integer**| Query parameter enum test (double) | [optional] [enum: 1, -2]
**enumQueryDouble** | **Double**| Query parameter enum test (double) | [optional] [enum: 1.1, -1.2] **enumQueryDouble** | **Double**| Query parameter enum test (double) | [optional] [enum: 1.1, -1.2]
**enumFormStringArray** | [**List&lt;String&gt;**](String.md)| Form parameter enum test (string array) | [optional] [default to $] [enum: >, $] **enumFormStringArray** | [**List&lt;String&gt;**](String.md)| Form parameter enum test (string array) | [optional] [enum: >, $]
**enumFormString** | **String**| Form parameter enum test (string) | [optional] [default to -efg] [enum: _abc, -efg, (xyz)] **enumFormString** | **String**| Form parameter enum test (string) | [optional] [default to -efg] [enum: _abc, -efg, (xyz)]
### Return type ### Return type
@@ -523,8 +523,8 @@ test json serialization of form data
FakeApi apiInstance = new FakeApi(); FakeApi apiInstance = new FakeApi();
String param = "null"; // String | field1 String param = "param_example"; // String | field1
String param2 = "null"; // String | field2 String param2 = "param2_example"; // String | field2
try { try {
apiInstance.testJsonFormData(param, param2); apiInstance.testJsonFormData(param, param2);
} catch (ApiException e) { } catch (ApiException e) {
@@ -537,8 +537,8 @@ try {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**param** | **String**| field1 | [default to null] **param** | **String**| field1 |
**param2** | **String**| field2 | [default to null] **param2** | **String**| field2 |
### Return type ### Return type

View File

@@ -141,7 +141,7 @@ OAuth petstore_auth = (OAuth) defaultClient.getAuthentication("petstore_auth");
petstore_auth.setAccessToken("YOUR ACCESS TOKEN"); petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
PetApi apiInstance = new PetApi(); PetApi apiInstance = new PetApi();
List<String> status = Arrays.asList("status_example"); // List<String> | Status values that need to be considered for filter List<String> status = Arrays.asList("available"); // List<String> | Status values that need to be considered for filter
try { try {
List<Pet> result = apiInstance.findPetsByStatus(status); List<Pet> result = apiInstance.findPetsByStatus(status);
System.out.println(result); System.out.println(result);
@@ -194,7 +194,7 @@ OAuth petstore_auth = (OAuth) defaultClient.getAuthentication("petstore_auth");
petstore_auth.setAccessToken("YOUR ACCESS TOKEN"); petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
PetApi apiInstance = new PetApi(); PetApi apiInstance = new PetApi();
List<String> tags = Arrays.asList("tags_example"); // List<String> | Tags to filter by List<String> tags = Arrays.asList(); // List<String> | Tags to filter by
try { try {
List<Pet> result = apiInstance.findPetsByTags(tags); List<Pet> result = apiInstance.findPetsByTags(tags);
System.out.println(result); System.out.println(result);
@@ -351,8 +351,8 @@ petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
PetApi apiInstance = new PetApi(); PetApi apiInstance = new PetApi();
Long petId = 56L; // Long | ID of pet that needs to be updated Long petId = 56L; // Long | ID of pet that needs to be updated
String name = "null"; // String | Updated name of the pet String name = "name_example"; // String | Updated name of the pet
String status = "null"; // String | Updated status of the pet String status = "status_example"; // String | Updated status of the pet
try { try {
apiInstance.updatePetWithForm(petId, name, status); apiInstance.updatePetWithForm(petId, name, status);
} catch (ApiException e) { } catch (ApiException e) {
@@ -366,8 +366,8 @@ try {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**petId** | **Long**| ID of pet that needs to be updated | **petId** | **Long**| ID of pet that needs to be updated |
**name** | **String**| Updated name of the pet | [optional] [default to null] **name** | **String**| Updated name of the pet | [optional]
**status** | **String**| Updated status of the pet | [optional] [default to null] **status** | **String**| Updated status of the pet | [optional]
### Return type ### Return type
@@ -405,8 +405,8 @@ petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
PetApi apiInstance = new PetApi(); PetApi apiInstance = new PetApi();
Long petId = 56L; // Long | ID of pet to update Long petId = 56L; // Long | ID of pet to update
String additionalMetadata = "null"; // String | Additional data to pass to server String additionalMetadata = "additionalMetadata_example"; // String | Additional data to pass to server
File file = new File("null"); // File | file to upload File file = new File("/path/to/file"); // File | file to upload
try { try {
ModelApiResponse result = apiInstance.uploadFile(petId, additionalMetadata, file); ModelApiResponse result = apiInstance.uploadFile(petId, additionalMetadata, file);
System.out.println(result); System.out.println(result);
@@ -421,8 +421,8 @@ try {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**petId** | **Long**| ID of pet to update | **petId** | **Long**| ID of pet to update |
**additionalMetadata** | **String**| Additional data to pass to server | [optional] [default to null] **additionalMetadata** | **String**| Additional data to pass to server | [optional]
**file** | **File**| file to upload | [optional] [default to null] **file** | **File**| file to upload | [optional]
### Return type ### Return type
@@ -460,8 +460,8 @@ petstore_auth.setAccessToken("YOUR ACCESS TOKEN");
PetApi apiInstance = new PetApi(); PetApi apiInstance = new PetApi();
Long petId = 56L; // Long | ID of pet to update Long petId = 56L; // Long | ID of pet to update
File requiredFile = new File("null"); // File | file to upload File requiredFile = new File("/path/to/file"); // File | file to upload
String additionalMetadata = "null"; // String | Additional data to pass to server String additionalMetadata = "additionalMetadata_example"; // String | Additional data to pass to server
try { try {
ModelApiResponse result = apiInstance.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata); ModelApiResponse result = apiInstance.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata);
System.out.println(result); System.out.println(result);
@@ -476,8 +476,8 @@ try {
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**petId** | **Long**| ID of pet to update | **petId** | **Long**| ID of pet to update |
**requiredFile** | **File**| file to upload | [default to null] **requiredFile** | **File**| file to upload |
**additionalMetadata** | **String**| Additional data to pass to server | [optional] [default to null] **additionalMetadata** | **String**| Additional data to pass to server | [optional]
### Return type ### Return type

View File

@@ -72,7 +72,7 @@ Creates list of users with given input array
UserApi apiInstance = new UserApi(); UserApi apiInstance = new UserApi();
List<User> user = Arrays.asList(new List()); // List<User> | List of user object List<User> user = Arrays.asList(null); // List<User> | List of user object
try { try {
apiInstance.createUsersWithArrayInput(user); apiInstance.createUsersWithArrayInput(user);
} catch (ApiException e) { } catch (ApiException e) {
@@ -114,7 +114,7 @@ Creates list of users with given input array
UserApi apiInstance = new UserApi(); UserApi apiInstance = new UserApi();
List<User> user = Arrays.asList(new List()); // List<User> | List of user object List<User> user = Arrays.asList(null); // List<User> | List of user object
try { try {
apiInstance.createUsersWithListInput(user); apiInstance.createUsersWithListInput(user);
} catch (ApiException e) { } catch (ApiException e) {

View File

@@ -35,7 +35,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Animal { public class Animal {
@JsonProperty("className") @JsonProperty("className")
private String className = null; private String className;
@JsonProperty("color") @JsonProperty("color")
private String color = "red"; private String color = "red";

View File

@@ -27,22 +27,22 @@ import io.swagger.annotations.ApiModelProperty;
public class Capitalization { public class Capitalization {
@JsonProperty("smallCamel") @JsonProperty("smallCamel")
private String smallCamel = null; private String smallCamel;
@JsonProperty("CapitalCamel") @JsonProperty("CapitalCamel")
private String capitalCamel = null; private String capitalCamel;
@JsonProperty("small_Snake") @JsonProperty("small_Snake")
private String smallSnake = null; private String smallSnake;
@JsonProperty("Capital_Snake") @JsonProperty("Capital_Snake")
private String capitalSnake = null; private String capitalSnake;
@JsonProperty("SCA_ETH_Flow_Points") @JsonProperty("SCA_ETH_Flow_Points")
private String scAETHFlowPoints = null; private String scAETHFlowPoints;
@JsonProperty("ATT_NAME") @JsonProperty("ATT_NAME")
private String ATT_NAME = null; private String ATT_NAME;
public Capitalization smallCamel(String smallCamel) { public Capitalization smallCamel(String smallCamel) {
this.smallCamel = smallCamel; this.smallCamel = smallCamel;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Cat extends Animal { public class Cat extends Animal {
@JsonProperty("declawed") @JsonProperty("declawed")
private Boolean declawed = null; private Boolean declawed;
public Cat declawed(Boolean declawed) { public Cat declawed(Boolean declawed) {
this.declawed = declawed; this.declawed = declawed;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Category { public class Category {
@JsonProperty("id") @JsonProperty("id")
private Long id = null; private Long id;
@JsonProperty("name") @JsonProperty("name")
private String name = null; private String name;
public Category id(Long id) { public Category id(Long id) {
this.id = id; this.id = id;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ClassModel { public class ClassModel {
@JsonProperty("_class") @JsonProperty("_class")
private String propertyClass = null; private String propertyClass;
public ClassModel propertyClass(String propertyClass) { public ClassModel propertyClass(String propertyClass) {
this.propertyClass = propertyClass; this.propertyClass = propertyClass;

View File

@@ -27,7 +27,7 @@ import io.swagger.annotations.ApiModelProperty;
public class Client { public class Client {
@JsonProperty("client") @JsonProperty("client")
private String client = null; private String client;
public Client client(String client) { public Client client(String client) {
this.client = client; this.client = client;

View File

@@ -28,7 +28,7 @@ import org.openapitools.client.model.Animal;
public class Dog extends Animal { public class Dog extends Animal {
@JsonProperty("breed") @JsonProperty("breed")
private String breed = null; private String breed;
public Dog breed(String breed) { public Dog breed(String breed) {
this.breed = breed; this.breed = breed;

View File

@@ -64,7 +64,7 @@ public class EnumArrays {
} }
@JsonProperty("just_symbol") @JsonProperty("just_symbol")
private JustSymbolEnum justSymbol = null; private JustSymbolEnum justSymbol;
/** /**
* Gets or Sets arrayEnum * Gets or Sets arrayEnum

View File

@@ -65,7 +65,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string") @JsonProperty("enum_string")
private EnumStringEnum enumString = null; private EnumStringEnum enumString;
/** /**
* Gets or Sets enumStringRequired * Gets or Sets enumStringRequired
@@ -105,7 +105,7 @@ public class EnumTest {
} }
@JsonProperty("enum_string_required") @JsonProperty("enum_string_required")
private EnumStringRequiredEnum enumStringRequired = null; private EnumStringRequiredEnum enumStringRequired;
/** /**
* Gets or Sets enumInteger * Gets or Sets enumInteger
@@ -143,7 +143,7 @@ public class EnumTest {
} }
@JsonProperty("enum_integer") @JsonProperty("enum_integer")
private EnumIntegerEnum enumInteger = null; private EnumIntegerEnum enumInteger;
/** /**
* Gets or Sets enumNumber * Gets or Sets enumNumber
@@ -181,7 +181,7 @@ public class EnumTest {
} }
@JsonProperty("enum_number") @JsonProperty("enum_number")
private EnumNumberEnum enumNumber = null; private EnumNumberEnum enumNumber;
@JsonProperty("outerEnum") @JsonProperty("outerEnum")
private OuterEnum outerEnum = null; private OuterEnum outerEnum = null;

View File

@@ -32,43 +32,43 @@ import org.threeten.bp.OffsetDateTime;
public class FormatTest { public class FormatTest {
@JsonProperty("integer") @JsonProperty("integer")
private Integer integer = null; private Integer integer;
@JsonProperty("int32") @JsonProperty("int32")
private Integer int32 = null; private Integer int32;
@JsonProperty("int64") @JsonProperty("int64")
private Long int64 = null; private Long int64;
@JsonProperty("number") @JsonProperty("number")
private BigDecimal number = null; private BigDecimal number;
@JsonProperty("float") @JsonProperty("float")
private Float _float = null; private Float _float;
@JsonProperty("double") @JsonProperty("double")
private Double _double = null; private Double _double;
@JsonProperty("string") @JsonProperty("string")
private String string = null; private String string;
@JsonProperty("byte") @JsonProperty("byte")
private byte[] _byte = null; private byte[] _byte;
@JsonProperty("binary") @JsonProperty("binary")
private File binary = null; private File binary;
@JsonProperty("date") @JsonProperty("date")
private LocalDate date = null; private LocalDate date;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("password") @JsonProperty("password")
private String password = null; private String password;
public FormatTest integer(Integer integer) { public FormatTest integer(Integer integer) {
this.integer = integer; this.integer = integer;

View File

@@ -27,10 +27,10 @@ import io.swagger.annotations.ApiModelProperty;
public class HasOnlyReadOnly { public class HasOnlyReadOnly {
@JsonProperty("bar") @JsonProperty("bar")
private String bar = null; private String bar;
@JsonProperty("foo") @JsonProperty("foo")
private String foo = null; private String foo;
/** /**
* Get bar * Get bar

View File

@@ -33,10 +33,10 @@ import org.threeten.bp.OffsetDateTime;
public class MixedPropertiesAndAdditionalPropertiesClass { public class MixedPropertiesAndAdditionalPropertiesClass {
@JsonProperty("uuid") @JsonProperty("uuid")
private UUID uuid = null; private UUID uuid;
@JsonProperty("dateTime") @JsonProperty("dateTime")
private OffsetDateTime dateTime = null; private OffsetDateTime dateTime;
@JsonProperty("map") @JsonProperty("map")
private Map<String, Animal> map = null; private Map<String, Animal> map = null;

View File

@@ -28,10 +28,10 @@ import io.swagger.annotations.ApiModelProperty;
public class Model200Response { public class Model200Response {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("class") @JsonProperty("class")
private String propertyClass = null; private String propertyClass;
public Model200Response name(Integer name) { public Model200Response name(Integer name) {
this.name = name; this.name = name;

View File

@@ -27,13 +27,13 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelApiResponse { public class ModelApiResponse {
@JsonProperty("code") @JsonProperty("code")
private Integer code = null; private Integer code;
@JsonProperty("type") @JsonProperty("type")
private String type = null; private String type;
@JsonProperty("message") @JsonProperty("message")
private String message = null; private String message;
public ModelApiResponse code(Integer code) { public ModelApiResponse code(Integer code) {
this.code = code; this.code = code;

View File

@@ -28,7 +28,7 @@ import io.swagger.annotations.ApiModelProperty;
public class ModelReturn { public class ModelReturn {
@JsonProperty("return") @JsonProperty("return")
private Integer _return = null; private Integer _return;
public ModelReturn _return(Integer _return) { public ModelReturn _return(Integer _return) {
this._return = _return; this._return = _return;

View File

@@ -28,16 +28,16 @@ import io.swagger.annotations.ApiModelProperty;
public class Name { public class Name {
@JsonProperty("name") @JsonProperty("name")
private Integer name = null; private Integer name;
@JsonProperty("snake_case") @JsonProperty("snake_case")
private Integer snakeCase = null; private Integer snakeCase;
@JsonProperty("property") @JsonProperty("property")
private String property = null; private String property;
@JsonProperty("123Number") @JsonProperty("123Number")
private Integer _123number = null; private Integer _123number;
public Name name(Integer name) { public Name name(Integer name) {
this.name = name; this.name = name;

View File

@@ -28,7 +28,7 @@ import java.math.BigDecimal;
public class NumberOnly { public class NumberOnly {
@JsonProperty("JustNumber") @JsonProperty("JustNumber")
private BigDecimal justNumber = null; private BigDecimal justNumber;
public NumberOnly justNumber(BigDecimal justNumber) { public NumberOnly justNumber(BigDecimal justNumber) {
this.justNumber = justNumber; this.justNumber = justNumber;

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