mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-11 08:31:21 +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
605 B
605 B
Petstore::MapTest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| map_map_of_string | Hash<String, Hash<String, String>> | [optional] | |
| map_of_enum_string | Hash<String, String> | [optional] | |
| direct_map | Hash<String, Boolean> | [optional] | |
| indirect_map | Hash<String, Boolean> | [optional] |
Code Sample
require 'petstore'
instance = Petstore::MapTest.new(
map_map_of_string: null,
map_of_enum_string: null,
direct_map: null,
indirect_map: null
)