Julien Feltesse 522faf835a
[ruby] fix oneOf handling (#5706)
* [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
2020-11-23 22:43:34 +08:00

532 B

Petstore::ArrayTest

Properties

Name Type Description Notes
array_of_string Array<String> [optional]
array_array_of_integer Array<Array<Integer>> [optional]
array_array_of_model Array<Array<ReadOnlyFirst>> [optional]

Code Sample

require 'petstore'

instance = Petstore::ArrayTest.new(
  array_of_string: null,
  array_array_of_integer: null,
  array_array_of_model: null
)