mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-16 14:40:54 +00:00
* add test for oneOf model in ruby * add new files * add tests for oneOf model without discriminator
381 B
381 B
Petstore::Whale
Properties
Name | Type | Description | Notes |
---|---|---|---|
has_baleen | Boolean | [optional] | |
has_teeth | Boolean | [optional] | |
classname | String |
Example
require 'petstore'
instance = Petstore::Whale.new(
has_baleen: null,
has_teeth: null,
classname: null
)