Merge remote-tracking branch 'origin/master' into 7.0.x

This commit is contained in:
William Cheng
2023-05-10 15:00:56 +08:00
2319 changed files with 61134 additions and 22322 deletions

View File

@@ -201,9 +201,12 @@ Class | Method | HTTP request | Description
- [User](docs/User.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -214,6 +217,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -221,6 +225,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -228,16 +233,19 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication
<a id="bearer_test"></a>
### bearer_test
- **Type**: HTTP basic authentication
<a id="http_signature_test"></a>
### http_signature_test

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -204,9 +204,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -217,6 +220,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -224,6 +228,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -231,6 +236,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test

View File

@@ -204,9 +204,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -217,6 +220,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -224,6 +228,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -231,6 +236,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -229,9 +229,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -242,6 +245,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -249,6 +253,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -256,6 +261,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test

View File

@@ -899,7 +899,17 @@ public class ApiClient extends JavaTimeFormatter {
File file = (File) param.getValue();
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey())
.fileName(file.getName()).size(file.length()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, MediaType.APPLICATION_OCTET_STREAM_TYPE));
// Attempt to probe the content type for the file so that the form part is more correctly
// and precisely identified, but fall back to application/octet-stream if that fails.
MediaType type;
try {
type = MediaType.valueOf(Files.probeContentType(file.toPath()));
} catch (IOException | IllegalArgumentException e) {
type = MediaType.APPLICATION_OCTET_STREAM_TYPE;
}
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, type));
} else {
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, parameterToString(param.getValue())));

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -229,9 +229,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -242,6 +245,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -249,6 +253,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -256,6 +261,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test

View File

@@ -899,7 +899,17 @@ public class ApiClient extends JavaTimeFormatter {
File file = (File) param.getValue();
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey())
.fileName(file.getName()).size(file.length()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, MediaType.APPLICATION_OCTET_STREAM_TYPE));
// Attempt to probe the content type for the file so that the form part is more correctly
// and precisely identified, but fall back to application/octet-stream if that fails.
MediaType type;
try {
type = MediaType.valueOf(Files.probeContentType(file.toPath()));
} catch (IOException | IllegalArgumentException e) {
type = MediaType.APPLICATION_OCTET_STREAM_TYPE;
}
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, type));
} else {
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, parameterToString(param.getValue())));

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -234,9 +234,12 @@ Class | Method | HTTP request | Description
- [Zebra](docs/Zebra.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -247,6 +250,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -254,6 +258,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -261,16 +266,19 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication
<a id="bearer_test"></a>
### bearer_test
- **Type**: HTTP basic authentication
<a id="http_signature_test"></a>
### http_signature_test

View File

@@ -981,7 +981,17 @@ public class ApiClient extends JavaTimeFormatter {
File file = (File) param.getValue();
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey())
.fileName(file.getName()).size(file.length()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, MediaType.APPLICATION_OCTET_STREAM_TYPE));
// Attempt to probe the content type for the file so that the form part is more correctly
// and precisely identified, but fall back to application/octet-stream if that fails.
MediaType type;
try {
type = MediaType.valueOf(Files.probeContentType(file.toPath()));
} catch (IOException | IllegalArgumentException e) {
type = MediaType.APPLICATION_OCTET_STREAM_TYPE;
}
multiPart.bodyPart(new FormDataBodyPart(contentDisp, file, type));
} else {
FormDataContentDisposition contentDisp = FormDataContentDisposition.name(param.getKey()).build();
multiPart.bodyPart(new FormDataBodyPart(contentDisp, parameterToString(param.getValue())));

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -266,9 +266,12 @@ Class | Method | HTTP request | Description
- [Zebra](docs/Zebra.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -279,6 +282,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -286,6 +290,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -293,16 +298,19 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication
<a id="bearer_test"></a>
### bearer_test
- **Type**: HTTP basic authentication
<a id="http_signature_test"></a>
### http_signature_test

View File

@@ -1851,7 +1851,7 @@ CompletableFuture<ApiResponse<Void>>
| **400** | Something wrong | - |
<a name="APItestGroupParametersRequest"></a>
<a id="APItestGroupParametersRequest"></a>
## APItestGroupParametersRequest
### Properties

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -157,9 +157,12 @@ Class | Method | HTTP request | Description
- [User](docs/User.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -170,6 +173,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -265,9 +265,12 @@ Class | Method | HTTP request | Description
- [Zebra](docs/Zebra.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
@@ -278,6 +281,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
@@ -285,6 +289,7 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
@@ -292,16 +297,19 @@ Authentication schemes defined for the API:
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication
<a id="bearer_test"></a>
### bearer_test
- **Type**: HTTP basic authentication
<a id="http_signature_test"></a>
### http_signature_test

View File

@@ -1743,7 +1743,7 @@ ApiResponse<Void>
| **400** | Something wrong | - |
<a name="APItestGroupParametersRequest"></a>
<a id="APItestGroupParametersRequest"></a>
## APItestGroupParametersRequest
### Properties

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -152,9 +152,12 @@ Class | Method | HTTP request | Description
- [User](docs/User.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
- **Type**: OAuth
@@ -164,6 +167,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
- **Type**: API key

View File

@@ -14,7 +14,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
| [**uploadFile**](PetApi.md#uploadFile) | **POST** /pet/{petId}/uploadImage | uploads an image |
<a name="addPet"></a>
<a id="addPet"></a>
# **addPet**
> Pet addPet(pet)
@@ -84,7 +84,7 @@ public class Example {
| **200** | successful operation | - |
| **405** | Invalid input | - |
<a name="deletePet"></a>
<a id="deletePet"></a>
# **deletePet**
> deletePet(petId, apiKey)
@@ -154,7 +154,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **400** | Invalid pet value | - |
<a name="findPetsByStatus"></a>
<a id="findPetsByStatus"></a>
# **findPetsByStatus**
> List&lt;Pet&gt; findPetsByStatus(status)
@@ -224,7 +224,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid status value | - |
<a name="findPetsByTags"></a>
<a id="findPetsByTags"></a>
# **findPetsByTags**
> List&lt;Pet&gt; findPetsByTags(tags)
@@ -294,7 +294,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid tag value | - |
<a name="getPetById"></a>
<a id="getPetById"></a>
# **getPetById**
> Pet getPetById(petId)
@@ -367,7 +367,7 @@ public class Example {
| **400** | Invalid ID supplied | - |
| **404** | Pet not found | - |
<a name="updatePet"></a>
<a id="updatePet"></a>
# **updatePet**
> Pet updatePet(pet)
@@ -439,7 +439,7 @@ public class Example {
| **404** | Pet not found | - |
| **405** | Validation exception | - |
<a name="updatePetWithForm"></a>
<a id="updatePetWithForm"></a>
# **updatePetWithForm**
> updatePetWithForm(petId, name, status)
@@ -511,7 +511,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **405** | Invalid input | - |
<a name="uploadFile"></a>
<a id="uploadFile"></a>
# **uploadFile**
> ModelApiResponse uploadFile(petId, additionalMetadata, _file)

View File

@@ -10,7 +10,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
| [**placeOrder**](StoreApi.md#placeOrder) | **POST** /store/order | Place an order for a pet |
<a name="deleteOrder"></a>
<a id="deleteOrder"></a>
# **deleteOrder**
> deleteOrder(orderId)
@@ -74,7 +74,7 @@ No authorization required
| **400** | Invalid ID supplied | - |
| **404** | Order not found | - |
<a name="getInventory"></a>
<a id="getInventory"></a>
# **getInventory**
> Map&lt;String, Integer&gt; getInventory()
@@ -141,7 +141,7 @@ This endpoint does not need any parameter.
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="getOrderById"></a>
<a id="getOrderById"></a>
# **getOrderById**
> Order getOrderById(orderId)
@@ -207,7 +207,7 @@ No authorization required
| **400** | Invalid ID supplied | - |
| **404** | Order not found | - |
<a name="placeOrder"></a>
<a id="placeOrder"></a>
# **placeOrder**
> Order placeOrder(order)

View File

@@ -14,7 +14,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
| [**updateUser**](UserApi.md#updateUser) | **PUT** /user/{username} | Updated user |
<a name="createUser"></a>
<a id="createUser"></a>
# **createUser**
> createUser(user)
@@ -84,7 +84,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="createUsersWithArrayInput"></a>
<a id="createUsersWithArrayInput"></a>
# **createUsersWithArrayInput**
> createUsersWithArrayInput(user)
@@ -154,7 +154,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="createUsersWithListInput"></a>
<a id="createUsersWithListInput"></a>
# **createUsersWithListInput**
> createUsersWithListInput(user)
@@ -224,7 +224,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="deleteUser"></a>
<a id="deleteUser"></a>
# **deleteUser**
> deleteUser(username)
@@ -295,7 +295,7 @@ null (empty response body)
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="getUserByName"></a>
<a id="getUserByName"></a>
# **getUserByName**
> User getUserByName(username)
@@ -361,7 +361,7 @@ No authorization required
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="loginUser"></a>
<a id="loginUser"></a>
# **loginUser**
> String loginUser(username, password)
@@ -428,7 +428,7 @@ No authorization required
| **200** | successful operation | * Set-Cookie - Cookie authentication key for use with the &#x60;api_key&#x60; apiKey authentication. <br> * X-Rate-Limit - calls per hour allowed by the user <br> * X-Expires-After - date in UTC when token expires <br> |
| **400** | Invalid username/password supplied | - |
<a name="logoutUser"></a>
<a id="logoutUser"></a>
# **logoutUser**
> logoutUser()
@@ -494,7 +494,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="updateUser"></a>
<a id="updateUser"></a>
# **updateUser**
> updateUser(username, user)

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -74,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -96,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -118,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -136,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -158,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -180,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -202,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -224,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -246,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -36,6 +36,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -122,6 +126,7 @@ public class Pet {
}
public static final String SERIALIZED_NAME_STATUS = "status";
@Deprecated
@SerializedName(SERIALIZED_NAME_STATUS)
private StatusEnum status;
@@ -139,7 +144,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -161,7 +165,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -183,7 +186,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -213,7 +215,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public List<String> getPhotoUrls() {
return photoUrls;
}
@@ -243,7 +244,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -254,6 +254,7 @@ public class Pet {
}
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
@@ -267,12 +268,12 @@ public class Pet {
**/
@Deprecated
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -94,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -116,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -138,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -160,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -182,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -204,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -226,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -248,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -204,9 +204,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
- **Type**: OAuth
@@ -216,18 +219,21 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication

View File

@@ -7,7 +7,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**call123testSpecialTags**](AnotherFakeApi.md#call123testSpecialTags) | **PATCH** /another-fake/dummy | To test special tags |
<a name="call123testSpecialTags"></a>
<a id="call123testSpecialTags"></a>
# **call123testSpecialTags**
> Client call123testSpecialTags(body)

View File

@@ -20,7 +20,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**testQueryParameterCollectionFormat**](FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-parameters | |
<a name="createXmlItem"></a>
<a id="createXmlItem"></a>
# **createXmlItem**
> createXmlItem(xmlItem)
@@ -81,7 +81,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="fakeOuterBooleanSerialize"></a>
<a id="fakeOuterBooleanSerialize"></a>
# **fakeOuterBooleanSerialize**
> Boolean fakeOuterBooleanSerialize(body)
@@ -143,7 +143,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output boolean | - |
<a name="fakeOuterCompositeSerialize"></a>
<a id="fakeOuterCompositeSerialize"></a>
# **fakeOuterCompositeSerialize**
> OuterComposite fakeOuterCompositeSerialize(body)
@@ -205,7 +205,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output composite | - |
<a name="fakeOuterNumberSerialize"></a>
<a id="fakeOuterNumberSerialize"></a>
# **fakeOuterNumberSerialize**
> BigDecimal fakeOuterNumberSerialize(body)
@@ -267,7 +267,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output number | - |
<a name="fakeOuterStringSerialize"></a>
<a id="fakeOuterStringSerialize"></a>
# **fakeOuterStringSerialize**
> String fakeOuterStringSerialize(body)
@@ -329,7 +329,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output string | - |
<a name="testBodyWithFileSchema"></a>
<a id="testBodyWithFileSchema"></a>
# **testBodyWithFileSchema**
> testBodyWithFileSchema(body)
@@ -390,7 +390,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Success | - |
<a name="testBodyWithQueryParams"></a>
<a id="testBodyWithQueryParams"></a>
# **testBodyWithQueryParams**
> testBodyWithQueryParams(query, body)
@@ -451,7 +451,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Success | - |
<a name="testClientModel"></a>
<a id="testClientModel"></a>
# **testClientModel**
> Client testClientModel(body)
@@ -513,7 +513,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testEndpointParameters"></a>
<a id="testEndpointParameters"></a>
# **testEndpointParameters**
> testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback)
@@ -607,7 +607,7 @@ null (empty response body)
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="testEnumParameters"></a>
<a id="testEnumParameters"></a>
# **testEnumParameters**
> testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumFormStringArray, enumFormString)
@@ -683,7 +683,7 @@ No authorization required
| **400** | Invalid request | - |
| **404** | Not found | - |
<a name="testGroupParameters"></a>
<a id="testGroupParameters"></a>
# **testGroupParameters**
> testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group).stringGroup(stringGroup).booleanGroup(booleanGroup).int64Group(int64Group).execute();
@@ -758,7 +758,7 @@ No authorization required
|-------------|-------------|------------------|
| **400** | Something wrong | - |
<a name="testInlineAdditionalProperties"></a>
<a id="testInlineAdditionalProperties"></a>
# **testInlineAdditionalProperties**
> testInlineAdditionalProperties(param)
@@ -817,7 +817,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testJsonFormData"></a>
<a id="testJsonFormData"></a>
# **testJsonFormData**
> testJsonFormData(param, param2)
@@ -878,7 +878,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testQueryParameterCollectionFormat"></a>
<a id="testQueryParameterCollectionFormat"></a>
# **testQueryParameterCollectionFormat**
> testQueryParameterCollectionFormat(pipe, ioutil, http, url, context)

View File

@@ -7,7 +7,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**testClassname**](FakeClassnameTags123Api.md#testClassname) | **PATCH** /fake_classname_test | To test class name in snake case |
<a name="testClassname"></a>
<a id="testClassname"></a>
# **testClassname**
> Client testClassname(body)

View File

@@ -15,7 +15,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**uploadFileWithRequiredFile**](PetApi.md#uploadFileWithRequiredFile) | **POST** /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) |
<a name="addPet"></a>
<a id="addPet"></a>
# **addPet**
> addPet(body)
@@ -80,7 +80,7 @@ null (empty response body)
| **200** | successful operation | - |
| **405** | Invalid input | - |
<a name="deletePet"></a>
<a id="deletePet"></a>
# **deletePet**
> deletePet(petId, apiKey)
@@ -147,7 +147,7 @@ null (empty response body)
| **200** | successful operation | - |
| **400** | Invalid pet value | - |
<a name="findPetsByStatus"></a>
<a id="findPetsByStatus"></a>
# **findPetsByStatus**
> List&lt;Pet&gt; findPetsByStatus(status)
@@ -215,7 +215,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid status value | - |
<a name="findPetsByTags"></a>
<a id="findPetsByTags"></a>
# **findPetsByTags**
> Set&lt;Pet&gt; findPetsByTags(tags)
@@ -283,7 +283,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid tag value | - |
<a name="getPetById"></a>
<a id="getPetById"></a>
# **getPetById**
> Pet getPetById(petId)
@@ -354,7 +354,7 @@ public class Example {
| **400** | Invalid ID supplied | - |
| **404** | Pet not found | - |
<a name="updatePet"></a>
<a id="updatePet"></a>
# **updatePet**
> updatePet(body)
@@ -421,7 +421,7 @@ null (empty response body)
| **404** | Pet not found | - |
| **405** | Validation exception | - |
<a name="updatePetWithForm"></a>
<a id="updatePetWithForm"></a>
# **updatePetWithForm**
> updatePetWithForm(petId, name, status)
@@ -489,7 +489,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **405** | Invalid input | - |
<a name="uploadFile"></a>
<a id="uploadFile"></a>
# **uploadFile**
> ModelApiResponse uploadFile(petId, additionalMetadata, _file)
@@ -558,7 +558,7 @@ public class Example {
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="uploadFileWithRequiredFile"></a>
<a id="uploadFileWithRequiredFile"></a>
# **uploadFileWithRequiredFile**
> ModelApiResponse uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata)

View File

@@ -10,7 +10,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**placeOrder**](StoreApi.md#placeOrder) | **POST** /store/order | Place an order for a pet |
<a name="deleteOrder"></a>
<a id="deleteOrder"></a>
# **deleteOrder**
> deleteOrder(orderId)
@@ -72,7 +72,7 @@ No authorization required
| **400** | Invalid ID supplied | - |
| **404** | Order not found | - |
<a name="getInventory"></a>
<a id="getInventory"></a>
# **getInventory**
> Map&lt;String, Integer&gt; getInventory()
@@ -137,7 +137,7 @@ This endpoint does not need any parameter.
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="getOrderById"></a>
<a id="getOrderById"></a>
# **getOrderById**
> Order getOrderById(orderId)
@@ -201,7 +201,7 @@ No authorization required
| **400** | Invalid ID supplied | - |
| **404** | Order not found | - |
<a name="placeOrder"></a>
<a id="placeOrder"></a>
# **placeOrder**
> Order placeOrder(body)

View File

@@ -14,7 +14,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**updateUser**](UserApi.md#updateUser) | **PUT** /user/{username} | Updated user |
<a name="createUser"></a>
<a id="createUser"></a>
# **createUser**
> createUser(body)
@@ -75,7 +75,7 @@ No authorization required
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="createUsersWithArrayInput"></a>
<a id="createUsersWithArrayInput"></a>
# **createUsersWithArrayInput**
> createUsersWithArrayInput(body)
@@ -134,7 +134,7 @@ No authorization required
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="createUsersWithListInput"></a>
<a id="createUsersWithListInput"></a>
# **createUsersWithListInput**
> createUsersWithListInput(body)
@@ -193,7 +193,7 @@ No authorization required
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="deleteUser"></a>
<a id="deleteUser"></a>
# **deleteUser**
> deleteUser(username)
@@ -255,7 +255,7 @@ No authorization required
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="getUserByName"></a>
<a id="getUserByName"></a>
# **getUserByName**
> User getUserByName(username)
@@ -317,7 +317,7 @@ No authorization required
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="loginUser"></a>
<a id="loginUser"></a>
# **loginUser**
> String loginUser(username, password)
@@ -380,7 +380,7 @@ No authorization required
| **200** | successful operation | * X-Rate-Limit - calls per hour allowed by the user <br> * X-Expires-After - date in UTC when token expires <br> |
| **400** | Invalid username/password supplied | - |
<a name="logoutUser"></a>
<a id="logoutUser"></a>
# **logoutUser**
> logoutUser()
@@ -435,7 +435,7 @@ No authorization required
|-------------|-------------|------------------|
| **0** | successful operation | - |
<a name="updateUser"></a>
<a id="updateUser"></a>
# **updateUser**
> updateUser(username, body)

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class AdditionalPropertiesAnyType {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -67,7 +71,6 @@ public class AdditionalPropertiesArray {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class AdditionalPropertiesBoolean {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -36,6 +36,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -118,7 +122,6 @@ public class AdditionalPropertiesClass {
* @return mapString
**/
@javax.annotation.Nullable
public Map<String, String> getMapString() {
return mapString;
}
@@ -148,7 +151,6 @@ public class AdditionalPropertiesClass {
* @return mapNumber
**/
@javax.annotation.Nullable
public Map<String, BigDecimal> getMapNumber() {
return mapNumber;
}
@@ -178,7 +180,6 @@ public class AdditionalPropertiesClass {
* @return mapInteger
**/
@javax.annotation.Nullable
public Map<String, Integer> getMapInteger() {
return mapInteger;
}
@@ -208,7 +209,6 @@ public class AdditionalPropertiesClass {
* @return mapBoolean
**/
@javax.annotation.Nullable
public Map<String, Boolean> getMapBoolean() {
return mapBoolean;
}
@@ -238,7 +238,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayInteger
**/
@javax.annotation.Nullable
public Map<String, List<Integer>> getMapArrayInteger() {
return mapArrayInteger;
}
@@ -268,7 +267,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayAnytype
**/
@javax.annotation.Nullable
public Map<String, List<Object>> getMapArrayAnytype() {
return mapArrayAnytype;
}
@@ -298,7 +296,6 @@ public class AdditionalPropertiesClass {
* @return mapMapString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapString() {
return mapMapString;
}
@@ -328,7 +325,6 @@ public class AdditionalPropertiesClass {
* @return mapMapAnytype
**/
@javax.annotation.Nullable
public Map<String, Map<String, Object>> getMapMapAnytype() {
return mapMapAnytype;
}
@@ -350,7 +346,6 @@ public class AdditionalPropertiesClass {
* @return anytype1
**/
@javax.annotation.Nullable
public Object getAnytype1() {
return anytype1;
}
@@ -372,7 +367,6 @@ public class AdditionalPropertiesClass {
* @return anytype2
**/
@javax.annotation.Nullable
public Object getAnytype2() {
return anytype2;
}
@@ -394,7 +388,6 @@ public class AdditionalPropertiesClass {
* @return anytype3
**/
@javax.annotation.Nullable
public Object getAnytype3() {
return anytype3;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class AdditionalPropertiesInteger {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -67,7 +71,6 @@ public class AdditionalPropertiesNumber {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -67,7 +71,6 @@ public class AdditionalPropertiesObject {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class AdditionalPropertiesString {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -71,7 +75,6 @@ public class Animal {
* @return className
**/
@javax.annotation.Nonnull
public String getClassName() {
return className;
}
@@ -93,7 +96,6 @@ public class Animal {
* @return color
**/
@javax.annotation.Nullable
public String getColor() {
return color;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -77,7 +81,6 @@ public class ArrayOfArrayOfNumberOnly {
* @return arrayArrayNumber
**/
@javax.annotation.Nullable
public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -77,7 +81,6 @@ public class ArrayOfNumberOnly {
* @return arrayNumber
**/
@javax.annotation.Nullable
public List<BigDecimal> getArrayNumber() {
return arrayNumber;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -85,7 +89,6 @@ public class ArrayTest {
* @return arrayOfString
**/
@javax.annotation.Nullable
public List<String> getArrayOfString() {
return arrayOfString;
}
@@ -115,7 +118,6 @@ public class ArrayTest {
* @return arrayArrayOfInteger
**/
@javax.annotation.Nullable
public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger;
}
@@ -145,7 +147,6 @@ public class ArrayTest {
* @return arrayArrayOfModel
**/
@javax.annotation.Nullable
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -119,7 +123,6 @@ public class BigCat extends Cat {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -117,7 +121,6 @@ public class BigCatAllOf {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -86,7 +90,6 @@ public class Capitalization {
* @return smallCamel
**/
@javax.annotation.Nullable
public String getSmallCamel() {
return smallCamel;
}
@@ -108,7 +111,6 @@ public class Capitalization {
* @return capitalCamel
**/
@javax.annotation.Nullable
public String getCapitalCamel() {
return capitalCamel;
}
@@ -130,7 +132,6 @@ public class Capitalization {
* @return smallSnake
**/
@javax.annotation.Nullable
public String getSmallSnake() {
return smallSnake;
}
@@ -152,7 +153,6 @@ public class Capitalization {
* @return capitalSnake
**/
@javax.annotation.Nullable
public String getCapitalSnake() {
return capitalSnake;
}
@@ -174,7 +174,6 @@ public class Capitalization {
* @return scAETHFlowPoints
**/
@javax.annotation.Nullable
public String getScAETHFlowPoints() {
return scAETHFlowPoints;
}
@@ -196,7 +195,6 @@ public class Capitalization {
* @return ATT_NAME
**/
@javax.annotation.Nullable
public String getATTNAME() {
return ATT_NAME;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -68,7 +72,6 @@ public class Cat extends Animal {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class CatAllOf {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class ClassModel {
* @return propertyClass
**/
@javax.annotation.Nullable
public String getPropertyClass() {
return propertyClass;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class Client {
* @return client
**/
@javax.annotation.Nullable
public String getClient() {
return client;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -68,7 +72,6 @@ public class Dog extends Animal {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class DogAllOf {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -34,6 +34,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -166,7 +170,6 @@ public class EnumArrays {
* @return justSymbol
**/
@javax.annotation.Nullable
public JustSymbolEnum getJustSymbol() {
return justSymbol;
}
@@ -196,7 +199,6 @@ public class EnumArrays {
* @return arrayEnum
**/
@javax.annotation.Nullable
public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -275,7 +279,6 @@ public class EnumTest {
* @return enumString
**/
@javax.annotation.Nullable
public EnumStringEnum getEnumString() {
return enumString;
}
@@ -297,7 +300,6 @@ public class EnumTest {
* @return enumStringRequired
**/
@javax.annotation.Nonnull
public EnumStringRequiredEnum getEnumStringRequired() {
return enumStringRequired;
}
@@ -319,7 +321,6 @@ public class EnumTest {
* @return enumInteger
**/
@javax.annotation.Nullable
public EnumIntegerEnum getEnumInteger() {
return enumInteger;
}
@@ -341,7 +342,6 @@ public class EnumTest {
* @return enumNumber
**/
@javax.annotation.Nullable
public EnumNumberEnum getEnumNumber() {
return enumNumber;
}
@@ -363,7 +363,6 @@ public class EnumTest {
* @return outerEnum
**/
@javax.annotation.Nullable
public OuterEnum getOuterEnum() {
return outerEnum;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -73,7 +77,6 @@ public class FileSchemaTestClass {
* @return _file
**/
@javax.annotation.Nullable
public ModelFile getFile() {
return _file;
}
@@ -103,7 +106,6 @@ public class FileSchemaTestClass {
* @return files
**/
@javax.annotation.Nullable
public List<ModelFile> getFiles() {
return files;
}

View File

@@ -37,6 +37,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -125,7 +129,6 @@ public class FormatTest {
* @return integer
**/
@javax.annotation.Nullable
public Integer getInteger() {
return integer;
}
@@ -149,7 +152,6 @@ public class FormatTest {
* @return int32
**/
@javax.annotation.Nullable
public Integer getInt32() {
return int32;
}
@@ -171,7 +173,6 @@ public class FormatTest {
* @return int64
**/
@javax.annotation.Nullable
public Long getInt64() {
return int64;
}
@@ -195,7 +196,6 @@ public class FormatTest {
* @return number
**/
@javax.annotation.Nonnull
public BigDecimal getNumber() {
return number;
}
@@ -219,7 +219,6 @@ public class FormatTest {
* @return _float
**/
@javax.annotation.Nullable
public Float getFloat() {
return _float;
}
@@ -243,7 +242,6 @@ public class FormatTest {
* @return _double
**/
@javax.annotation.Nullable
public Double getDouble() {
return _double;
}
@@ -265,7 +263,6 @@ public class FormatTest {
* @return string
**/
@javax.annotation.Nullable
public String getString() {
return string;
}
@@ -287,7 +284,6 @@ public class FormatTest {
* @return _byte
**/
@javax.annotation.Nonnull
public byte[] getByte() {
return _byte;
}
@@ -309,7 +305,6 @@ public class FormatTest {
* @return binary
**/
@javax.annotation.Nullable
public File getBinary() {
return binary;
}
@@ -331,7 +326,6 @@ public class FormatTest {
* @return date
**/
@javax.annotation.Nonnull
public LocalDate getDate() {
return date;
}
@@ -353,7 +347,6 @@ public class FormatTest {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -375,7 +368,6 @@ public class FormatTest {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -397,7 +389,6 @@ public class FormatTest {
* @return password
**/
@javax.annotation.Nonnull
public String getPassword() {
return password;
}
@@ -419,7 +410,6 @@ public class FormatTest {
* @return bigDecimal
**/
@javax.annotation.Nullable
public BigDecimal getBigDecimal() {
return bigDecimal;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -74,7 +78,6 @@ public class HasOnlyReadOnly {
* @return bar
**/
@javax.annotation.Nullable
public String getBar() {
return bar;
}
@@ -87,7 +90,6 @@ public class HasOnlyReadOnly {
* @return foo
**/
@javax.annotation.Nullable
public String getFoo() {
return foo;
}

View File

@@ -34,6 +34,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -135,7 +139,6 @@ public class MapTest {
* @return mapMapOfString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString;
}
@@ -165,7 +168,6 @@ public class MapTest {
* @return mapOfEnumString
**/
@javax.annotation.Nullable
public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString;
}
@@ -195,7 +197,6 @@ public class MapTest {
* @return directMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getDirectMap() {
return directMap;
}
@@ -225,7 +226,6 @@ public class MapTest {
* @return indirectMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getIndirectMap() {
return indirectMap;
}

View File

@@ -37,6 +37,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -79,7 +83,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -101,7 +104,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -131,7 +133,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return map
**/
@javax.annotation.Nullable
public Map<String, Animal> getMap() {
return map;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Model200Response {
* @return name
**/
@javax.annotation.Nullable
public Integer getName() {
return name;
}
@@ -92,7 +95,6 @@ public class Model200Response {
* @return propertyClass
**/
@javax.annotation.Nullable
public String getPropertyClass() {
return propertyClass;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -74,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -96,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -118,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class ModelFile {
* @return sourceURI
**/
@javax.annotation.Nullable
public String getSourceURI() {
return sourceURI;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class ModelList {
* @return _123list
**/
@javax.annotation.Nullable
public String get123list() {
return _123list;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class ModelReturn {
* @return _return
**/
@javax.annotation.Nullable
public Integer getReturn() {
return _return;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -88,7 +92,6 @@ public class Name {
* @return name
**/
@javax.annotation.Nonnull
public Integer getName() {
return name;
}
@@ -104,7 +107,6 @@ public class Name {
* @return snakeCase
**/
@javax.annotation.Nullable
public Integer getSnakeCase() {
return snakeCase;
}
@@ -123,7 +125,6 @@ public class Name {
* @return property
**/
@javax.annotation.Nullable
public String getProperty() {
return property;
}
@@ -139,7 +140,6 @@ public class Name {
* @return _123number
**/
@javax.annotation.Nullable
public Integer get123number() {
return _123number;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -67,7 +71,6 @@ public class NumberOnly {
* @return justNumber
**/
@javax.annotation.Nullable
public BigDecimal getJustNumber() {
return justNumber;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -136,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -158,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -180,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -202,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -224,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -246,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -75,7 +79,6 @@ public class OuterComposite {
* @return myNumber
**/
@javax.annotation.Nullable
public BigDecimal getMyNumber() {
return myNumber;
}
@@ -97,7 +100,6 @@ public class OuterComposite {
* @return myString
**/
@javax.annotation.Nullable
public String getMyString() {
return myString;
}
@@ -119,7 +121,6 @@ public class OuterComposite {
* @return myBoolean
**/
@javax.annotation.Nullable
public Boolean getMyBoolean() {
return myBoolean;
}

View File

@@ -38,6 +38,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -141,7 +145,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -163,7 +166,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -185,7 +187,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -215,7 +216,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public Set<String> getPhotoUrls() {
return photoUrls;
}
@@ -245,7 +245,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -267,7 +266,6 @@ public class Pet {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -72,7 +76,6 @@ public class ReadOnlyFirst {
* @return bar
**/
@javax.annotation.Nullable
public String getBar() {
return bar;
}
@@ -91,7 +94,6 @@ public class ReadOnlyFirst {
* @return baz
**/
@javax.annotation.Nullable
public String getBaz() {
return baz;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -66,7 +70,6 @@ public class SpecialModelName {
* @return $specialPropertyName
**/
@javax.annotation.Nullable
public Long get$SpecialPropertyName() {
return $specialPropertyName;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -85,7 +89,6 @@ public class TypeHolderDefault {
* @return stringItem
**/
@javax.annotation.Nonnull
public String getStringItem() {
return stringItem;
}
@@ -107,7 +110,6 @@ public class TypeHolderDefault {
* @return numberItem
**/
@javax.annotation.Nonnull
public BigDecimal getNumberItem() {
return numberItem;
}
@@ -129,7 +131,6 @@ public class TypeHolderDefault {
* @return integerItem
**/
@javax.annotation.Nonnull
public Integer getIntegerItem() {
return integerItem;
}
@@ -151,7 +152,6 @@ public class TypeHolderDefault {
* @return boolItem
**/
@javax.annotation.Nonnull
public Boolean getBoolItem() {
return boolItem;
}
@@ -181,7 +181,6 @@ public class TypeHolderDefault {
* @return arrayItem
**/
@javax.annotation.Nonnull
public List<Integer> getArrayItem() {
return arrayItem;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -89,7 +93,6 @@ public class TypeHolderExample {
* @return stringItem
**/
@javax.annotation.Nonnull
public String getStringItem() {
return stringItem;
}
@@ -111,7 +114,6 @@ public class TypeHolderExample {
* @return numberItem
**/
@javax.annotation.Nonnull
public BigDecimal getNumberItem() {
return numberItem;
}
@@ -133,7 +135,6 @@ public class TypeHolderExample {
* @return floatItem
**/
@javax.annotation.Nonnull
public Float getFloatItem() {
return floatItem;
}
@@ -155,7 +156,6 @@ public class TypeHolderExample {
* @return integerItem
**/
@javax.annotation.Nonnull
public Integer getIntegerItem() {
return integerItem;
}
@@ -177,7 +177,6 @@ public class TypeHolderExample {
* @return boolItem
**/
@javax.annotation.Nonnull
public Boolean getBoolItem() {
return boolItem;
}
@@ -207,7 +206,6 @@ public class TypeHolderExample {
* @return arrayItem
**/
@javax.annotation.Nonnull
public List<Integer> getArrayItem() {
return arrayItem;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -94,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -116,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -138,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -160,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -182,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -204,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -226,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -248,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -35,6 +35,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -181,7 +185,6 @@ public class XmlItem {
* @return attributeString
**/
@javax.annotation.Nullable
public String getAttributeString() {
return attributeString;
}
@@ -203,7 +206,6 @@ public class XmlItem {
* @return attributeNumber
**/
@javax.annotation.Nullable
public BigDecimal getAttributeNumber() {
return attributeNumber;
}
@@ -225,7 +227,6 @@ public class XmlItem {
* @return attributeInteger
**/
@javax.annotation.Nullable
public Integer getAttributeInteger() {
return attributeInteger;
}
@@ -247,7 +248,6 @@ public class XmlItem {
* @return attributeBoolean
**/
@javax.annotation.Nullable
public Boolean getAttributeBoolean() {
return attributeBoolean;
}
@@ -277,7 +277,6 @@ public class XmlItem {
* @return wrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getWrappedArray() {
return wrappedArray;
}
@@ -299,7 +298,6 @@ public class XmlItem {
* @return nameString
**/
@javax.annotation.Nullable
public String getNameString() {
return nameString;
}
@@ -321,7 +319,6 @@ public class XmlItem {
* @return nameNumber
**/
@javax.annotation.Nullable
public BigDecimal getNameNumber() {
return nameNumber;
}
@@ -343,7 +340,6 @@ public class XmlItem {
* @return nameInteger
**/
@javax.annotation.Nullable
public Integer getNameInteger() {
return nameInteger;
}
@@ -365,7 +361,6 @@ public class XmlItem {
* @return nameBoolean
**/
@javax.annotation.Nullable
public Boolean getNameBoolean() {
return nameBoolean;
}
@@ -395,7 +390,6 @@ public class XmlItem {
* @return nameArray
**/
@javax.annotation.Nullable
public List<Integer> getNameArray() {
return nameArray;
}
@@ -425,7 +419,6 @@ public class XmlItem {
* @return nameWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getNameWrappedArray() {
return nameWrappedArray;
}
@@ -447,7 +440,6 @@ public class XmlItem {
* @return prefixString
**/
@javax.annotation.Nullable
public String getPrefixString() {
return prefixString;
}
@@ -469,7 +461,6 @@ public class XmlItem {
* @return prefixNumber
**/
@javax.annotation.Nullable
public BigDecimal getPrefixNumber() {
return prefixNumber;
}
@@ -491,7 +482,6 @@ public class XmlItem {
* @return prefixInteger
**/
@javax.annotation.Nullable
public Integer getPrefixInteger() {
return prefixInteger;
}
@@ -513,7 +503,6 @@ public class XmlItem {
* @return prefixBoolean
**/
@javax.annotation.Nullable
public Boolean getPrefixBoolean() {
return prefixBoolean;
}
@@ -543,7 +532,6 @@ public class XmlItem {
* @return prefixArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixArray() {
return prefixArray;
}
@@ -573,7 +561,6 @@ public class XmlItem {
* @return prefixWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixWrappedArray() {
return prefixWrappedArray;
}
@@ -595,7 +582,6 @@ public class XmlItem {
* @return namespaceString
**/
@javax.annotation.Nullable
public String getNamespaceString() {
return namespaceString;
}
@@ -617,7 +603,6 @@ public class XmlItem {
* @return namespaceNumber
**/
@javax.annotation.Nullable
public BigDecimal getNamespaceNumber() {
return namespaceNumber;
}
@@ -639,7 +624,6 @@ public class XmlItem {
* @return namespaceInteger
**/
@javax.annotation.Nullable
public Integer getNamespaceInteger() {
return namespaceInteger;
}
@@ -661,7 +645,6 @@ public class XmlItem {
* @return namespaceBoolean
**/
@javax.annotation.Nullable
public Boolean getNamespaceBoolean() {
return namespaceBoolean;
}
@@ -691,7 +674,6 @@ public class XmlItem {
* @return namespaceArray
**/
@javax.annotation.Nullable
public List<Integer> getNamespaceArray() {
return namespaceArray;
}
@@ -721,7 +703,6 @@ public class XmlItem {
* @return namespaceWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getNamespaceWrappedArray() {
return namespaceWrappedArray;
}
@@ -743,7 +724,6 @@ public class XmlItem {
* @return prefixNsString
**/
@javax.annotation.Nullable
public String getPrefixNsString() {
return prefixNsString;
}
@@ -765,7 +745,6 @@ public class XmlItem {
* @return prefixNsNumber
**/
@javax.annotation.Nullable
public BigDecimal getPrefixNsNumber() {
return prefixNsNumber;
}
@@ -787,7 +766,6 @@ public class XmlItem {
* @return prefixNsInteger
**/
@javax.annotation.Nullable
public Integer getPrefixNsInteger() {
return prefixNsInteger;
}
@@ -809,7 +787,6 @@ public class XmlItem {
* @return prefixNsBoolean
**/
@javax.annotation.Nullable
public Boolean getPrefixNsBoolean() {
return prefixNsBoolean;
}
@@ -839,7 +816,6 @@ public class XmlItem {
* @return prefixNsArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixNsArray() {
return prefixNsArray;
}
@@ -869,7 +845,6 @@ public class XmlItem {
* @return prefixNsWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixNsWrappedArray() {
return prefixNsWrappedArray;
}

View File

@@ -139,9 +139,12 @@ Class | Method | HTTP request | Description
- [User](docs/User.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
- **Type**: OAuth
@@ -151,6 +154,7 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
- **Type**: API key

View File

@@ -14,7 +14,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
| [**uploadFile**](PetApi.md#uploadFile) | **POST** /pet/{petId}/uploadImage | uploads an image |
<a name="addPet"></a>
<a id="addPet"></a>
# **addPet**
> Pet addPet(pet).execute();
@@ -83,7 +83,7 @@ public class Example {
| **200** | successful operation | - |
| **405** | Invalid input | - |
<a name="deletePet"></a>
<a id="deletePet"></a>
# **deletePet**
> deletePet(petId).apiKey(apiKey).execute();
@@ -153,7 +153,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **400** | Invalid pet value | - |
<a name="findPetsByStatus"></a>
<a id="findPetsByStatus"></a>
# **findPetsByStatus**
> List&lt;Pet&gt; findPetsByStatus(status).execute();
@@ -222,7 +222,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid status value | - |
<a name="findPetsByTags"></a>
<a id="findPetsByTags"></a>
# **findPetsByTags**
> List&lt;Pet&gt; findPetsByTags(tags).execute();
@@ -291,7 +291,7 @@ public class Example {
| **200** | successful operation | - |
| **400** | Invalid tag value | - |
<a name="getPetById"></a>
<a id="getPetById"></a>
# **getPetById**
> Pet getPetById(petId).execute();
@@ -363,7 +363,7 @@ public class Example {
| **400** | Invalid ID supplied | - |
| **404** | Pet not found | - |
<a name="updatePet"></a>
<a id="updatePet"></a>
# **updatePet**
> Pet updatePet(pet).execute();
@@ -434,7 +434,7 @@ public class Example {
| **404** | Pet not found | - |
| **405** | Validation exception | - |
<a name="updatePetWithForm"></a>
<a id="updatePetWithForm"></a>
# **updatePetWithForm**
> updatePetWithForm(petId, name, status)
@@ -504,7 +504,7 @@ null (empty response body)
|-------------|-------------|------------------|
| **405** | Invalid input | - |
<a name="uploadFile"></a>
<a id="uploadFile"></a>
# **uploadFile**
> ModelApiResponse uploadFile(petId).additionalMetadata(additionalMetadata)._file(_file).execute();

View File

@@ -15,6 +15,8 @@ package org.openapitools.client;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "1.0.0";
private static ApiClient defaultApiClient = new ApiClient();
/**

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -74,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -96,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -118,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -33,6 +33,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -136,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -158,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -180,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -202,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -224,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -246,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -36,6 +36,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -122,6 +126,7 @@ public class Pet {
}
public static final String SERIALIZED_NAME_STATUS = "status";
@Deprecated
@SerializedName(SERIALIZED_NAME_STATUS)
private StatusEnum status;
@@ -139,7 +144,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -161,7 +165,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -183,7 +186,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -213,7 +215,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public List<String> getPhotoUrls() {
return photoUrls;
}
@@ -243,7 +244,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -254,6 +254,7 @@ public class Pet {
}
@Deprecated
public Pet status(StatusEnum status) {
this.status = status;
@@ -267,12 +268,12 @@ public class Pet {
**/
@Deprecated
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@Deprecated
public void setStatus(StatusEnum status) {
this.status = status;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -70,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -92,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -32,6 +32,10 @@ import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
@@ -94,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -116,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -138,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -160,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -182,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -204,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -226,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -248,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -204,9 +204,12 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
<a id="documentation-for-authorization"></a>
## Documentation for Authorization
Authentication schemes defined for the API:
<a id="petstore_auth"></a>
### petstore_auth
- **Type**: OAuth
@@ -216,18 +219,21 @@ Authentication schemes defined for the API:
- write:pets: modify pets in your account
- read:pets: read your pets
<a id="api_key"></a>
### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
<a id="api_key_query"></a>
### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
<a id="http_basic_test"></a>
### http_basic_test
- **Type**: HTTP basic authentication

View File

@@ -7,7 +7,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**call123testSpecialTags**](AnotherFakeApi.md#call123testSpecialTags) | **PATCH** /another-fake/dummy | To test special tags |
<a name="call123testSpecialTags"></a>
<a id="call123testSpecialTags"></a>
# **call123testSpecialTags**
> Client call123testSpecialTags(body)

View File

@@ -20,7 +20,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**testQueryParameterCollectionFormat**](FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-parameters | |
<a name="createXmlItem"></a>
<a id="createXmlItem"></a>
# **createXmlItem**
> createXmlItem(xmlItem)
@@ -81,7 +81,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="fakeOuterBooleanSerialize"></a>
<a id="fakeOuterBooleanSerialize"></a>
# **fakeOuterBooleanSerialize**
> Boolean fakeOuterBooleanSerialize(body)
@@ -143,7 +143,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output boolean | - |
<a name="fakeOuterCompositeSerialize"></a>
<a id="fakeOuterCompositeSerialize"></a>
# **fakeOuterCompositeSerialize**
> OuterComposite fakeOuterCompositeSerialize(body)
@@ -205,7 +205,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output composite | - |
<a name="fakeOuterNumberSerialize"></a>
<a id="fakeOuterNumberSerialize"></a>
# **fakeOuterNumberSerialize**
> BigDecimal fakeOuterNumberSerialize(body)
@@ -267,7 +267,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output number | - |
<a name="fakeOuterStringSerialize"></a>
<a id="fakeOuterStringSerialize"></a>
# **fakeOuterStringSerialize**
> String fakeOuterStringSerialize(body)
@@ -329,7 +329,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Output string | - |
<a name="testBodyWithFileSchema"></a>
<a id="testBodyWithFileSchema"></a>
# **testBodyWithFileSchema**
> testBodyWithFileSchema(body)
@@ -390,7 +390,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Success | - |
<a name="testBodyWithQueryParams"></a>
<a id="testBodyWithQueryParams"></a>
# **testBodyWithQueryParams**
> testBodyWithQueryParams(query, body)
@@ -451,7 +451,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | Success | - |
<a name="testClientModel"></a>
<a id="testClientModel"></a>
# **testClientModel**
> Client testClientModel(body)
@@ -513,7 +513,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testEndpointParameters"></a>
<a id="testEndpointParameters"></a>
# **testEndpointParameters**
> testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback)
@@ -607,7 +607,7 @@ null (empty response body)
| **400** | Invalid username supplied | - |
| **404** | User not found | - |
<a name="testEnumParameters"></a>
<a id="testEnumParameters"></a>
# **testEnumParameters**
> testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumFormStringArray, enumFormString)
@@ -683,7 +683,7 @@ No authorization required
| **400** | Invalid request | - |
| **404** | Not found | - |
<a name="testGroupParameters"></a>
<a id="testGroupParameters"></a>
# **testGroupParameters**
> testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group).stringGroup(stringGroup).booleanGroup(booleanGroup).int64Group(int64Group).execute();
@@ -758,7 +758,7 @@ No authorization required
|-------------|-------------|------------------|
| **400** | Something wrong | - |
<a name="testInlineAdditionalProperties"></a>
<a id="testInlineAdditionalProperties"></a>
# **testInlineAdditionalProperties**
> testInlineAdditionalProperties(param)
@@ -817,7 +817,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testJsonFormData"></a>
<a id="testJsonFormData"></a>
# **testJsonFormData**
> testJsonFormData(param, param2)
@@ -878,7 +878,7 @@ No authorization required
|-------------|-------------|------------------|
| **200** | successful operation | - |
<a name="testQueryParameterCollectionFormat"></a>
<a id="testQueryParameterCollectionFormat"></a>
# **testQueryParameterCollectionFormat**
> testQueryParameterCollectionFormat(pipe, ioutil, http, url, context)

View File

@@ -7,7 +7,7 @@ All URIs are relative to *http://petstore.swagger.io:80/v2*
| [**testClassname**](FakeClassnameTags123Api.md#testClassname) | **PATCH** /fake_classname_test | To test class name in snake case |
<a name="testClassname"></a>
<a id="testClassname"></a>
# **testClassname**
> Client testClassname(body)

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