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.4 KiB

Petstore::InlineObject3

Properties

Name Type Description Notes
integer Integer None [optional]
int32 Integer None [optional]
int64 Integer None [optional]
number Float None
float Float None [optional]
double Float None
string String None [optional]
pattern_without_delimiter String None
byte String None
binary File None [optional]
date Date None [optional]
date_time DateTime None [optional]
password String None [optional]
callback String None [optional]

Code Sample

require 'Petstore'

instance = Petstore::InlineObject3.new(integer: null,
                                 int32: null,
                                 int64: null,
                                 number: null,
                                 float: null,
                                 double: null,
                                 string: null,
                                 pattern_without_delimiter: null,
                                 byte: null,
                                 binary: null,
                                 date: null,
                                 date_time: null,
                                 password: null,
                                 callback: null)