[Ruby] add file download tests (#17362)

* add new ruby echo api clients

* add tests for ruby faraday file download

* add file download test to ruby Typhoeus

* add ruby workflow, add tests for ruby httpx

* update

* fix
This commit is contained in:
William Cheng
2023-12-09 22:05:27 +08:00
committed by GitHub
parent dd36fa09f8
commit 10da7a3c5a
156 changed files with 17233 additions and 315 deletions

View File

@@ -0,0 +1,22 @@
# OpenapiClient::NumberPropertiesOnly
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **number** | **Float** | | [optional] |
| **float** | **Float** | | [optional] |
| **double** | **Float** | | [optional] |
## Example
```ruby
require 'openapi_client'
instance = OpenapiClient::NumberPropertiesOnly.new(
number: null,
float: null,
double: null
)
```