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,44 @@
# Petstore::InlineObject3
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **integer** | **Integer** | None | [optional] |
| **int32** | **Integer** | None | [optional] |
| **int64** | **Integer** | None | [optional] |
| **number** | **Float** | None | |
| **float** | **Float** | None | [optional] |
| **double** | **Float** | None | |
| **string** | **String** | None | [optional] |
| **pattern_without_delimiter** | **String** | None | |
| **byte** | **String** | None | |
| **binary** | **File** | None | [optional] |
| **date** | **Date** | None | [optional] |
| **date_time** | **Time** | None | [optional] |
| **password** | **String** | None | [optional] |
| **callback** | **String** | None | [optional] |
## Example
```ruby
require 'petstore'
instance = Petstore::InlineObject3.new(
integer: null,
int32: null,
int64: null,
number: null,
float: null,
double: null,
string: null,
pattern_without_delimiter: null,
byte: null,
binary: null,
date: null,
date_time: null,
password: null,
callback: null
)
```