OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
|
|
# OpenapiClient::TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||
|
|
|
||
|
|
## Properties
|
||
|
|
|
||
|
|
| Name | Type | Description | Notes |
|
||
|
|
| ---- | ---- | ----------- | ----- |
|
||
|
|
| **size** | **String** | | [optional] |
|
||
|
|
| **color** | **String** | | [optional] |
|
||
|
|
| **id** | **Integer** | | [optional] |
|
||
|
|
| **name** | **String** | | [optional] |
|
||
|
|
|
||
|
|
## Example
|
||
|
|
|
||
|
|
```ruby
|
||
|
|
require 'openapi_client'
|
||
|
|
|
||
|
|
instance = OpenapiClient::TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.new(
|
||
|
|
size: null,
|
||
|
|
color: null,
|
||
|
|
id: 1,
|
||
|
|
name: Dogs
|
||
|
|
)
|
||
|
|
```
|
||
|
|
|