mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-10 15:54:18 +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
493 B
493 B
Petstore::InlineObject2
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| enum_form_string_array | Array<String> | Form parameter enum test (string array) | [optional] |
| enum_form_string | String | Form parameter enum test (string) | [optional][default to '-efg'] |
Code Sample
require 'petstore'
instance = Petstore::InlineObject2.new(
enum_form_string_array: null,
enum_form_string: null
)