add ruby httpx echo api tests (#16729)

This commit is contained in:
William Cheng
2023-10-05 12:55:57 +08:00
committed by GitHub
parent c306ca3cf2
commit 6722f1300d
73 changed files with 8356 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# OpenapiClient::Pet
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **id** | **Integer** | | [optional] |
| **name** | **String** | | |
| **category** | [**Category**](Category.md) | | [optional] |
| **photo_urls** | **Array<String>** | | |
| **tags** | [**Array<Tag>**](Tag.md) | | [optional] |
| **status** | **String** | pet status in the store | [optional] |
## Example
```ruby
require 'openapi_client'
instance = OpenapiClient::Pet.new(
id: 10,
name: doggie,
category: null,
photo_urls: null,
tags: null,
status: null
)
```