openapi-generator/samples/client/petstore/ruby-faraday/docs/AdditionalPropertiesClass.md
William Cheng ca85ecb283
[Ruby][Faraday] Various improvements (#3520)
* update ruby faraday oas v2 samples

* skip some default tests in faraday

* add ruby faraday oas v3 client

* add tests, fix url

* add tests to CI

* fix file upload

* undo changes to ruby-client-petstore.sh

* test faraday first

* combine gemspec tempaltes

* test ruby faraday in drone.io

* use smaller image

* update bundler

* use official ruby image

* skip bundler installation

* skip autotest

* install make

* use different image

* skip ruby tests in drone.io
2019-08-02 07:00:29 +08:00

1.5 KiB

Petstore::AdditionalPropertiesClass

Properties

Name Type Description Notes
map_string Hash<String, String> [optional]
map_number Hash<String, Float> [optional]
map_integer Hash<String, Integer> [optional]
map_boolean Hash<String, Boolean> [optional]
map_array_integer Hash<String, Array<Integer>> [optional]
map_array_anytype Hash<String, Array<Object>> [optional]
map_map_string Hash<String, Hash<String, String>> [optional]
map_map_anytype Hash<String, Hash<String, Object>> [optional]
anytype_1 Object [optional]
anytype_2 Object [optional]
anytype_3 Object [optional]

Code Sample

require 'Petstore'

instance = Petstore::AdditionalPropertiesClass.new(map_string: null,
                                 map_number: null,
                                 map_integer: null,
                                 map_boolean: null,
                                 map_array_integer: null,
                                 map_array_anytype: null,
                                 map_map_string: null,
                                 map_map_anytype: null,
                                 anytype_1: null,
                                 anytype_2: null,
                                 anytype_3: null)