William Cheng 23c5db602f
Update ruby httpx petstore test (#16753)
* update ruby httpx petstore test

* fix pom

* comment out ruby httpx tests
2023-10-09 15:43:21 +08:00

1.1 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 Time None [optional]
password String None [optional]
callback String None [optional]

Example

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
)