Update ruby httpx petstore test (#16753)

* update ruby httpx petstore test

* fix pom

* comment out ruby httpx tests
This commit is contained in:
William Cheng
2023-10-09 15:43:21 +08:00
committed by GitHub
parent e3db882ed4
commit 23c5db602f
109 changed files with 5060 additions and 655 deletions

View File

@@ -0,0 +1,20 @@
# Petstore::InlineObject
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **name** | **String** | Updated name of the pet | [optional] |
| **status** | **String** | Updated status of the pet | [optional] |
## Example
```ruby
require 'petstore'
instance = Petstore::InlineObject.new(
name: null,
status: null
)
```