forked from loafle/openapi-generator-original
add ruby httpx echo api tests (#16729)
This commit is contained in:
28
samples/client/echo_api/ruby-httpx/docs/Pet.md
Normal file
28
samples/client/echo_api/ruby-httpx/docs/Pet.md
Normal 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
|
||||
)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user