mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-03 22:20:56 +00:00
* [ruby] fix oneOf handling * use previous ruby configs due to issue #4690 * check for oneOf model in base_object * validate the attributes in partial_oneof_module
380 B
380 B
Petstore::ApiResponse
Properties
Name | Type | Description | Notes |
---|---|---|---|
code | Integer | [optional] | |
type | String | [optional] | |
message | String | [optional] |
Code Sample
require 'petstore'
instance = Petstore::ApiResponse.new(
code: null,
type: null,
message: null
)