Fix allOf with a single item in inline model resolver (#17683)

* fix inline model resolver for allof with 1 item

* add files

* update sha

* more checks
This commit is contained in:
William Cheng
2024-01-23 23:37:39 +08:00
committed by GitHub
parent 4840b366bc
commit dccb147055
11 changed files with 755 additions and 8 deletions

View File

@@ -0,0 +1,28 @@
# PetUsingAllOf
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **Long** | | [optional] |
|**category** | [**Category**](Category.md) | | [optional] |
|**name** | **String** | | |
|**photoUrls** | **List<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" |