forked from loafle/openapi-generator-original
* Add micronaut server implementation * Add micronaut server tests and imporovements * Generate samples, docs and verify that tests pass * Update micronaut docs and samples after merging with master * Update micronaut dev server samples * Add micronuat server docs * Update micronaut version * Minor changes to micronaut server and client * Fix documentation generation in samples Co-authored-by: Andriy Dmytruk <andriy.dmytruk@andriy.dmytruk.ca.oracle.com>
704 B
704 B
Order
An order for a pets from the pet store
The class is defined in Order.java
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | Long |
[optional property] | |
| petId | Long |
[optional property] | |
| quantity | Integer |
[optional property] | |
| shipDate | LocalDateTime |
[optional property] | |
| status | StatusEnum | Order Status | [optional property] |
| complete | Boolean |
[optional property] |
StatusEnum
| Name | Value |
|---|---|
| PLACED | "placed" |
| APPROVED | "approved" |
| DELIVERED | "delivered" |