[Java][Client] Microprofile Jackson serialization (#15940)

This commit is contained in:
Théophane Charbonnier
2023-08-12 06:15:59 +02:00
committed by GitHub
parent 1878c45be5
commit 057bc8e626
91 changed files with 9269 additions and 62 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" |