remove warnings related to escaping the characters in the md generator (#12774)

This commit is contained in:
William Cheng 2022-07-06 14:19:40 +08:00 committed by GitHub
parent 1383be4a2e
commit f5b5feb58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 186 additions and 175 deletions

View File

@ -110,4 +110,17 @@ public class MarkdownDocumentationCodegen extends DefaultCodegen implements Code
@Override @Override
public GeneratorLanguage generatorLanguage() { return null; } public GeneratorLanguage generatorLanguage() { return null; }
@Override
public String escapeUnsafeCharacters(String input) {
// do nothing as the output is just doc
return input;
}
@Override
public String escapeQuotationMark(String input) {
// do nothing as the output is just doc
return input;
}
} }

View File

@ -3,8 +3,6 @@ Apis/StoreApi.md
Apis/UserApi.md Apis/UserApi.md
Models/ApiResponse.md Models/ApiResponse.md
Models/Category.md Models/Category.md
Models/InlineObject.md
Models/InlineObject1.md
Models/Order.md Models/Order.md
Models/Pet.md Models/Pet.md
Models/Tag.md Models/Tag.md

View File

@ -1 +1 @@
5.0.0-SNAPSHOT 6.1.0-SNAPSHOT

View File

@ -2,16 +2,16 @@
All URIs are relative to *http://petstore.swagger.io/v2* All URIs are relative to *http://petstore.swagger.io/v2*
Method | HTTP request | Description | Method | HTTP request | Description |
------------- | ------------- | ------------- |------------- | ------------- | -------------|
[**addPet**](PetApi.md#addPet) | **POST** /pet | Add a new pet to the store | [**addPet**](PetApi.md#addPet) | **POST** /pet | Add a new pet to the store |
[**deletePet**](PetApi.md#deletePet) | **DELETE** /pet/{petId} | Deletes a pet | [**deletePet**](PetApi.md#deletePet) | **DELETE** /pet/{petId} | Deletes a pet |
[**findPetsByStatus**](PetApi.md#findPetsByStatus) | **GET** /pet/findByStatus | Finds Pets by status | [**findPetsByStatus**](PetApi.md#findPetsByStatus) | **GET** /pet/findByStatus | Finds Pets by status |
[**findPetsByTags**](PetApi.md#findPetsByTags) | **GET** /pet/findByTags | Finds Pets by tags | [**findPetsByTags**](PetApi.md#findPetsByTags) | **GET** /pet/findByTags | Finds Pets by tags |
[**getPetById**](PetApi.md#getPetById) | **GET** /pet/{petId} | Find pet by ID | [**getPetById**](PetApi.md#getPetById) | **GET** /pet/{petId} | Find pet by ID |
[**updatePet**](PetApi.md#updatePet) | **PUT** /pet | Update an existing pet | [**updatePet**](PetApi.md#updatePet) | **PUT** /pet | Update an existing pet |
[**updatePetWithForm**](PetApi.md#updatePetWithForm) | **POST** /pet/{petId} | Updates a pet in the store with form data | [**updatePetWithForm**](PetApi.md#updatePetWithForm) | **POST** /pet/{petId} | Updates a pet in the store with form data |
[**uploadFile**](PetApi.md#uploadFile) | **POST** /pet/{petId}/uploadImage | uploads an image | [**uploadFile**](PetApi.md#uploadFile) | **POST** /pet/{petId}/uploadImage | uploads an image |
<a name="addPet"></a> <a name="addPet"></a>
@ -20,11 +20,13 @@ Method | HTTP request | Description
Add a new pet to the store Add a new pet to the store
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**Pet** | [**Pet**](../Models/Pet.md)| Pet object that needs to be added to the store | | **Pet** | [**Pet**](../Models/Pet.md)| Pet object that needs to be added to the store | |
### Return type ### Return type
@ -45,12 +47,14 @@ Name | Type | Description | Notes
Deletes a pet Deletes a pet
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**petId** | **Long**| Pet id to delete | [default to null] | **petId** | **Long**| Pet id to delete | [default to null] |
**api\_key** | **String**| | [optional] [default to null] | **api\_key** | **String**| | [optional] [default to null] |
### Return type ### Return type
@ -75,9 +79,9 @@ Finds Pets by status
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**status** | [**List**](../Models/String.md)| Status values that need to be considered for filter | [default to null] [enum: available, pending, sold] | **status** | [**List**](../Models/String.md)| Status values that need to be considered for filter | [default to null] [enum: available, pending, sold] |
### Return type ### Return type
@ -102,9 +106,9 @@ Finds Pets by tags
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**tags** | [**List**](../Models/String.md)| Tags to filter by | [default to null] | **tags** | [**List**](../Models/String.md)| Tags to filter by | [default to null] |
### Return type ### Return type
@ -129,9 +133,9 @@ Find pet by ID
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**petId** | **Long**| ID of pet to return | [default to null] | **petId** | **Long**| ID of pet to return | [default to null] |
### Return type ### Return type
@ -152,11 +156,13 @@ Name | Type | Description | Notes
Update an existing pet Update an existing pet
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**Pet** | [**Pet**](../Models/Pet.md)| Pet object that needs to be added to the store | | **Pet** | [**Pet**](../Models/Pet.md)| Pet object that needs to be added to the store | |
### Return type ### Return type
@ -177,13 +183,15 @@ Name | Type | Description | Notes
Updates a pet in the store with form data Updates a pet in the store with form data
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**petId** | **Long**| ID of pet that needs to be updated | [default to null] | **petId** | **Long**| ID of pet that needs to be updated | [default to null] |
**name** | **String**| Updated name of the pet | [optional] [default to null] | **name** | **String**| Updated name of the pet | [optional] [default to null] |
**status** | **String**| Updated status of the pet | [optional] [default to null] | **status** | **String**| Updated status of the pet | [optional] [default to null] |
### Return type ### Return type
@ -204,13 +212,15 @@ null (empty response body)
uploads an image uploads an image
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**petId** | **Long**| ID of pet to update | [default to null] | **petId** | **Long**| ID of pet to update | [default to null] |
**additionalMetadata** | **String**| Additional data to pass to server | [optional] [default to null] | **additionalMetadata** | **String**| Additional data to pass to server | [optional] [default to null] |
**file** | **File**| file to upload | [optional] [default to null] | **file** | **File**| file to upload | [optional] [default to null] |
### Return type ### Return type

View File

@ -2,12 +2,12 @@
All URIs are relative to *http://petstore.swagger.io/v2* All URIs are relative to *http://petstore.swagger.io/v2*
Method | HTTP request | Description | Method | HTTP request | Description |
------------- | ------------- | ------------- |------------- | ------------- | -------------|
[**deleteOrder**](StoreApi.md#deleteOrder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID | [**deleteOrder**](StoreApi.md#deleteOrder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID |
[**getInventory**](StoreApi.md#getInventory) | **GET** /store/inventory | Returns pet inventories by status | [**getInventory**](StoreApi.md#getInventory) | **GET** /store/inventory | Returns pet inventories by status |
[**getOrderById**](StoreApi.md#getOrderById) | **GET** /store/order/{orderId} | Find purchase order by ID | [**getOrderById**](StoreApi.md#getOrderById) | **GET** /store/order/{orderId} | Find purchase order by ID |
[**placeOrder**](StoreApi.md#placeOrder) | **POST** /store/order | Place an order for a pet | [**placeOrder**](StoreApi.md#placeOrder) | **POST** /store/order | Place an order for a pet |
<a name="deleteOrder"></a> <a name="deleteOrder"></a>
@ -20,9 +20,9 @@ Delete purchase order by ID
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**orderId** | **String**| ID of the order that needs to be deleted | [default to null] | **orderId** | **String**| ID of the order that needs to be deleted | [default to null] |
### Return type ### Return type
@ -50,7 +50,7 @@ This endpoint does not need any parameter.
### Return type ### Return type
[**Map**](../Models/integer.md) **Map**
### Authorization ### Authorization
@ -71,9 +71,9 @@ Find purchase order by ID
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**orderId** | **Long**| ID of pet that needs to be fetched | [default to null] | **orderId** | **Long**| ID of pet that needs to be fetched | [default to null] |
### Return type ### Return type
@ -94,11 +94,13 @@ No authorization required
Place an order for a pet Place an order for a pet
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**Order** | [**Order**](../Models/Order.md)| order placed for purchasing the pet | | **Order** | [**Order**](../Models/Order.md)| order placed for purchasing the pet | |
### Return type ### Return type

View File

@ -2,16 +2,16 @@
All URIs are relative to *http://petstore.swagger.io/v2* All URIs are relative to *http://petstore.swagger.io/v2*
Method | HTTP request | Description | Method | HTTP request | Description |
------------- | ------------- | ------------- |------------- | ------------- | -------------|
[**createUser**](UserApi.md#createUser) | **POST** /user | Create user | [**createUser**](UserApi.md#createUser) | **POST** /user | Create user |
[**createUsersWithArrayInput**](UserApi.md#createUsersWithArrayInput) | **POST** /user/createWithArray | Creates list of users with given input array | [**createUsersWithArrayInput**](UserApi.md#createUsersWithArrayInput) | **POST** /user/createWithArray | Creates list of users with given input array |
[**createUsersWithListInput**](UserApi.md#createUsersWithListInput) | **POST** /user/createWithList | Creates list of users with given input array | [**createUsersWithListInput**](UserApi.md#createUsersWithListInput) | **POST** /user/createWithList | Creates list of users with given input array |
[**deleteUser**](UserApi.md#deleteUser) | **DELETE** /user/{username} | Delete user | [**deleteUser**](UserApi.md#deleteUser) | **DELETE** /user/{username} | Delete user |
[**getUserByName**](UserApi.md#getUserByName) | **GET** /user/{username} | Get user by user name | [**getUserByName**](UserApi.md#getUserByName) | **GET** /user/{username} | Get user by user name |
[**loginUser**](UserApi.md#loginUser) | **GET** /user/login | Logs user into the system | [**loginUser**](UserApi.md#loginUser) | **GET** /user/login | Logs user into the system |
[**logoutUser**](UserApi.md#logoutUser) | **GET** /user/logout | Logs out current logged in user session | [**logoutUser**](UserApi.md#logoutUser) | **GET** /user/logout | Logs out current logged in user session |
[**updateUser**](UserApi.md#updateUser) | **PUT** /user/{username} | Updated user | [**updateUser**](UserApi.md#updateUser) | **PUT** /user/{username} | Updated user |
<a name="createUser"></a> <a name="createUser"></a>
@ -24,9 +24,9 @@ Create user
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**User** | [**User**](../Models/User.md)| Created user object | | **User** | [**User**](../Models/User.md)| Created user object | |
### Return type ### Return type
@ -47,11 +47,13 @@ null (empty response body)
Creates list of users with given input array Creates list of users with given input array
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**User** | [**List**](../Models/User.md)| List of user object | | **User** | [**List**](../Models/User.md)| List of user object | |
### Return type ### Return type
@ -72,11 +74,13 @@ null (empty response body)
Creates list of users with given input array Creates list of users with given input array
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**User** | [**List**](../Models/User.md)| List of user object | | **User** | [**List**](../Models/User.md)| List of user object | |
### Return type ### Return type
@ -101,9 +105,9 @@ Delete user
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**username** | **String**| The name that needs to be deleted | [default to null] | **username** | **String**| The name that needs to be deleted | [default to null] |
### Return type ### Return type
@ -124,11 +128,13 @@ null (empty response body)
Get user by user name Get user by user name
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**username** | **String**| The name that needs to be fetched. Use user1 for testing. | [default to null] | **username** | **String**| The name that needs to be fetched. Use user1 for testing. | [default to null] |
### Return type ### Return type
@ -149,16 +155,18 @@ No authorization required
Logs user into the system Logs user into the system
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**username** | **String**| The user name for login | [default to null] | **username** | **String**| The user name for login | [default to null] |
**password** | **String**| The password for login in clear text | [default to null] | **password** | **String**| The password for login in clear text | [default to null] |
### Return type ### Return type
[**String**](../Models/string.md) **String**
### Authorization ### Authorization
@ -175,6 +183,8 @@ No authorization required
Logs out current logged in user session Logs out current logged in user session
### Parameters ### Parameters
This endpoint does not need any parameter. This endpoint does not need any parameter.
@ -201,10 +211,10 @@ Updated user
### Parameters ### Parameters
Name | Type | Description | Notes |Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |------------- | ------------- | ------------- | -------------|
**username** | **String**| name that need to be deleted | [default to null] | **username** | **String**| name that need to be deleted | [default to null] |
**User** | [**User**](../Models/User.md)| Updated user object | | **User** | [**User**](../Models/User.md)| Updated user object | |
### Return type ### Return type

View File

@ -1,11 +1,11 @@
# ApiResponse # ApiResponse
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**code** | [**Integer**](integer.md) | | [optional] [default to null] | **code** | **Integer** | | [optional] [default to null] |
**type** | [**String**](string.md) | | [optional] [default to null] | **type** | **String** | | [optional] [default to null] |
**message** | [**String**](string.md) | | [optional] [default to null] | **message** | **String** | | [optional] [default to null] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,10 +1,10 @@
# Category # Category
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**id** | [**Long**](long.md) | | [optional] [default to null] | **id** | **Long** | | [optional] [default to null] |
**name** | [**String**](string.md) | | [optional] [default to null] | **name** | **String** | | [optional] [default to null] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,10 +0,0 @@
# InlineObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | [**String**](string.md) | Updated name of the pet | [optional] [default to null]
**status** | [**String**](string.md) | Updated status of the pet | [optional] [default to null]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,10 +0,0 @@
# InlineObject1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**additionalMetadata** | [**String**](string.md) | Additional data to pass to server | [optional] [default to null]
**file** | [**File**](file.md) | file to upload | [optional] [default to null]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,14 +1,14 @@
# Order # Order
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**id** | [**Long**](long.md) | | [optional] [default to null] | **id** | **Long** | | [optional] [default to null] |
**petId** | [**Long**](long.md) | | [optional] [default to null] | **petId** | **Long** | | [optional] [default to null] |
**quantity** | [**Integer**](integer.md) | | [optional] [default to null] | **quantity** | **Integer** | | [optional] [default to null] |
**shipDate** | [**Date**](DateTime.md) | | [optional] [default to null] | **shipDate** | **Date** | | [optional] [default to null] |
**status** | [**String**](string.md) | Order Status | [optional] [default to null] | **status** | **String** | Order Status | [optional] [default to null] |
**complete** | [**Boolean**](boolean.md) | | [optional] [default to false] | **complete** | **Boolean** | | [optional] [default to false] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,14 +1,14 @@
# Pet # Pet
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**id** | [**Long**](long.md) | | [optional] [default to null] | **id** | **Long** | | [optional] [default to null] |
**category** | [**Category**](Category.md) | | [optional] [default to null] | **category** | [**Category**](Category.md) | | [optional] [default to null] |
**name** | [**String**](string.md) | | [default to null] | **name** | **String** | | [default to null] |
**photoUrls** | [**List**](string.md) | | [default to null] | **photoUrls** | **List** | | [default to null] |
**tags** | [**List**](Tag.md) | | [optional] [default to null] | **tags** | [**List**](Tag.md) | | [optional] [default to null] |
**status** | [**String**](string.md) | pet status in the store | [optional] [default to null] | **status** | **String** | pet status in the store | [optional] [default to null] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,10 +1,10 @@
# Tag # Tag
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**id** | [**Long**](long.md) | | [optional] [default to null] | **id** | **Long** | | [optional] [default to null] |
**name** | [**String**](string.md) | | [optional] [default to null] | **name** | **String** | | [optional] [default to null] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -1,16 +1,16 @@
# User # User
## Properties ## Properties
Name | Type | Description | Notes | Name | Type | Description | Notes |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
**id** | [**Long**](long.md) | | [optional] [default to null] | **id** | **Long** | | [optional] [default to null] |
**username** | [**String**](string.md) | | [optional] [default to null] | **username** | **String** | | [optional] [default to null] |
**firstName** | [**String**](string.md) | | [optional] [default to null] | **firstName** | **String** | | [optional] [default to null] |
**lastName** | [**String**](string.md) | | [optional] [default to null] | **lastName** | **String** | | [optional] [default to null] |
**email** | [**String**](string.md) | | [optional] [default to null] | **email** | **String** | | [optional] [default to null] |
**password** | [**String**](string.md) | | [optional] [default to null] | **password** | **String** | | [optional] [default to null] |
**phone** | [**String**](string.md) | | [optional] [default to null] | **phone** | **String** | | [optional] [default to null] |
**userStatus** | [**Integer**](integer.md) | User Status | [optional] [default to null] | **userStatus** | **Integer** | User Status | [optional] [default to null] |
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -5,28 +5,28 @@
All URIs are relative to *http://petstore.swagger.io/v2* All URIs are relative to *http://petstore.swagger.io/v2*
Class | Method | HTTP request | Description | Class | Method | HTTP request | Description |
------------ | ------------- | ------------- | ------------- |------------ | ------------- | ------------- | -------------|
*PetApi* | [**addPet**](Apis/PetApi.md#addpet) | **POST** /pet | Add a new pet to the store | *PetApi* | [**addPet**](Apis/PetApi.md#addpet) | **POST** /pet | Add a new pet to the store |
*PetApi* | [**deletePet**](Apis/PetApi.md#deletepet) | **DELETE** /pet/{petId} | Deletes a pet *PetApi* | [**deletePet**](Apis/PetApi.md#deletepet) | **DELETE** /pet/{petId} | Deletes a pet |
*PetApi* | [**findPetsByStatus**](Apis/PetApi.md#findpetsbystatus) | **GET** /pet/findByStatus | Finds Pets by status *PetApi* | [**findPetsByStatus**](Apis/PetApi.md#findpetsbystatus) | **GET** /pet/findByStatus | Finds Pets by status |
*PetApi* | [**findPetsByTags**](Apis/PetApi.md#findpetsbytags) | **GET** /pet/findByTags | Finds Pets by tags *PetApi* | [**findPetsByTags**](Apis/PetApi.md#findpetsbytags) | **GET** /pet/findByTags | Finds Pets by tags |
*PetApi* | [**getPetById**](Apis/PetApi.md#getpetbyid) | **GET** /pet/{petId} | Find pet by ID *PetApi* | [**getPetById**](Apis/PetApi.md#getpetbyid) | **GET** /pet/{petId} | Find pet by ID |
*PetApi* | [**updatePet**](Apis/PetApi.md#updatepet) | **PUT** /pet | Update an existing pet *PetApi* | [**updatePet**](Apis/PetApi.md#updatepet) | **PUT** /pet | Update an existing pet |
*PetApi* | [**updatePetWithForm**](Apis/PetApi.md#updatepetwithform) | **POST** /pet/{petId} | Updates a pet in the store with form data *PetApi* | [**updatePetWithForm**](Apis/PetApi.md#updatepetwithform) | **POST** /pet/{petId} | Updates a pet in the store with form data |
*PetApi* | [**uploadFile**](Apis/PetApi.md#uploadfile) | **POST** /pet/{petId}/uploadImage | uploads an image *PetApi* | [**uploadFile**](Apis/PetApi.md#uploadfile) | **POST** /pet/{petId}/uploadImage | uploads an image |
*StoreApi* | [**deleteOrder**](Apis/StoreApi.md#deleteorder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID | *StoreApi* | [**deleteOrder**](Apis/StoreApi.md#deleteorder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID |
*StoreApi* | [**getInventory**](Apis/StoreApi.md#getinventory) | **GET** /store/inventory | Returns pet inventories by status *StoreApi* | [**getInventory**](Apis/StoreApi.md#getinventory) | **GET** /store/inventory | Returns pet inventories by status |
*StoreApi* | [**getOrderById**](Apis/StoreApi.md#getorderbyid) | **GET** /store/order/{orderId} | Find purchase order by ID *StoreApi* | [**getOrderById**](Apis/StoreApi.md#getorderbyid) | **GET** /store/order/{orderId} | Find purchase order by ID |
*StoreApi* | [**placeOrder**](Apis/StoreApi.md#placeorder) | **POST** /store/order | Place an order for a pet *StoreApi* | [**placeOrder**](Apis/StoreApi.md#placeorder) | **POST** /store/order | Place an order for a pet |
*UserApi* | [**createUser**](Apis/UserApi.md#createuser) | **POST** /user | Create user | *UserApi* | [**createUser**](Apis/UserApi.md#createuser) | **POST** /user | Create user |
*UserApi* | [**createUsersWithArrayInput**](Apis/UserApi.md#createuserswitharrayinput) | **POST** /user/createWithArray | Creates list of users with given input array *UserApi* | [**createUsersWithArrayInput**](Apis/UserApi.md#createuserswitharrayinput) | **POST** /user/createWithArray | Creates list of users with given input array |
*UserApi* | [**createUsersWithListInput**](Apis/UserApi.md#createuserswithlistinput) | **POST** /user/createWithList | Creates list of users with given input array *UserApi* | [**createUsersWithListInput**](Apis/UserApi.md#createuserswithlistinput) | **POST** /user/createWithList | Creates list of users with given input array |
*UserApi* | [**deleteUser**](Apis/UserApi.md#deleteuser) | **DELETE** /user/{username} | Delete user *UserApi* | [**deleteUser**](Apis/UserApi.md#deleteuser) | **DELETE** /user/{username} | Delete user |
*UserApi* | [**getUserByName**](Apis/UserApi.md#getuserbyname) | **GET** /user/{username} | Get user by user name *UserApi* | [**getUserByName**](Apis/UserApi.md#getuserbyname) | **GET** /user/{username} | Get user by user name |
*UserApi* | [**loginUser**](Apis/UserApi.md#loginuser) | **GET** /user/login | Logs user into the system *UserApi* | [**loginUser**](Apis/UserApi.md#loginuser) | **GET** /user/login | Logs user into the system |
*UserApi* | [**logoutUser**](Apis/UserApi.md#logoutuser) | **GET** /user/logout | Logs out current logged in user session *UserApi* | [**logoutUser**](Apis/UserApi.md#logoutuser) | **GET** /user/logout | Logs out current logged in user session |
*UserApi* | [**updateUser**](Apis/UserApi.md#updateuser) | **PUT** /user/{username} | Updated user *UserApi* | [**updateUser**](Apis/UserApi.md#updateuser) | **PUT** /user/{username} | Updated user |
<a name="documentation-for-models"></a> <a name="documentation-for-models"></a>
@ -34,8 +34,6 @@ Class | Method | HTTP request | Description
- [ApiResponse](./Models/ApiResponse.md) - [ApiResponse](./Models/ApiResponse.md)
- [Category](./Models/Category.md) - [Category](./Models/Category.md)
- [InlineObject](./Models/InlineObject.md)
- [InlineObject1](./Models/InlineObject1.md)
- [Order](./Models/Order.md) - [Order](./Models/Order.md)
- [Pet](./Models/Pet.md) - [Pet](./Models/Pet.md)
- [Tag](./Models/Tag.md) - [Tag](./Models/Tag.md)