mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 00:21:19 +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
341 B
341 B
Petstore::HasOnlyReadOnly
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| bar | String | [optional][readonly] | |
| foo | String | [optional][readonly] |
Code Sample
require 'petstore'
instance = Petstore::HasOnlyReadOnly.new(
bar: null,
foo: null
)