[Java/okhttp] Add dynamic operations option (#7916)

* Add dynamicOperations option to okhttp gen

* Add tests

* Add apiclient tests

* Fix apiclient template

* Add dependencies in gradle and sbt
This commit is contained in:
Christophe Bornet
2020-12-10 11:22:39 +01:00
committed by GitHub
parent d2f9d421d4
commit f2d8e3a25b
224 changed files with 29207 additions and 82 deletions

View File

@@ -0,0 +1,27 @@
# Pet
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Long** | | [optional]
**category** | [**Category**](Category.md) | | [optional]
**name** | **String** | |
**photoUrls** | **Set<String>** | |
**tags** | [**List<Tag>**](Tag.md) | | [optional]
**status** | [**StatusEnum**](#StatusEnum) | pet status in the store | [optional]
## Enum: StatusEnum
Name | Value
---- | -----
AVAILABLE | "available"
PENDING | "pending"
SOLD | "sold"