feat: Support useSingleRequestParameter feature for java microprofile client generation (#17072)

This commit is contained in:
Vignesh
2023-11-21 09:26:11 +05:30
committed by GitHub
parent baaf759440
commit 87b86c78dc
40 changed files with 4659 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
# Order
An order for a pets from the pet store
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **Long** | | [optional] |
|**petId** | **Long** | | [optional] |
|**quantity** | **Integer** | | [optional] |
|**shipDate** | **Date** | | [optional] |
|**status** | [**StatusEnum**](#StatusEnum) | Order Status | [optional] |
|**complete** | **Boolean** | | [optional] |
## Enum: StatusEnum
| Name | Value |
|---- | -----|
| PLACED | "placed" |
| APPROVED | "approved" |
| DELIVERED | "delivered" |