forked from loafle/openapi-generator-original
* add to_s in api error class * rename variable to align with code sample * fix initalize, better validation * update petstore samples * add code sample for model * add auto-generated travis file * improve error message * add travis file * uncomment to_s
699 B
699 B
Petstore::EnumTest
Properties
Name | Type | Description | Notes |
---|---|---|---|
enum_string | String | [optional] | |
enum_string_required | String | ||
enum_integer | Integer | [optional] | |
enum_number | Float | [optional] | |
outer_enum | OuterEnum | [optional] |
Code Sample
require 'Petstore'
instance = Petstore::EnumTest.new(enum_string: null,
enum_string_required: null,
enum_integer: null,
enum_number: null,
outer_enum: null)