mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-09 05:06:12 +00:00
[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:
@@ -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
|
||||
)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user