forked from loafle/openapi-generator-original
611 B
611 B
OpenapiClient::Pet
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | [optional] | |
name | String | ||
category | Category | [optional] | |
photo_urls | Array<String> | ||
tags | Array<Tag> | [optional] | |
status | String | pet status in the store | [optional] |
Example
require 'openapi_client'
instance = OpenapiClient::Pet.new(
id: 10,
name: doggie,
category: null,
photo_urls: null,
tags: null,
status: null
)