mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
* add new ruby echo api clients * add tests for ruby faraday file download * add file download test to ruby Typhoeus * add ruby workflow, add tests for ruby httpx * update * fix
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
)