mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-05 23:20:52 +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
371 B
371 B
Petstore::InlineObject
Properties
Name | Type | Description | Notes |
---|---|---|---|
name | String | Updated name of the pet | [optional] |
status | String | Updated status of the pet | [optional] |
Code Sample
require 'petstore'
instance = Petstore::InlineObject.new(
name: null,
status: null
)