forked from loafle/openapi-generator-original
* better support of inline schema in array item * update tests * update samples * regenerate samples * fix allof naming, remove files * add files * update samples * update readme * fix tests * update samples * update samples * add new files * update test spec * add back tests * remove unused files * comment out python test * update js test using own spec * remove files * remove unused files * remove files * remove unused files * better handling of allOf with a single type * comment out go test * remove test_all_of_with_single_ref_single_ref_type.py * fix inline resolver, uncomment go test
700 B
700 B
Petstore::User
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | [optional] | |
username | String | [optional] | |
first_name | String | [optional] | |
last_name | String | [optional] | |
String | [optional] | ||
password | String | [optional] | |
phone | String | [optional] | |
user_status | Integer | User Status | [optional] |
Example
require 'petstore'
instance = Petstore::User.new(
id: null,
username: null,
first_name: null,
last_name: null,
email: null,
password: null,
phone: null,
user_status: null
)