Update samples before starting fixes

This commit is contained in:
akihito.nakano 2018-04-08 01:31:30 +09:00
parent 9e8bdba455
commit df4297975c
6 changed files with 23 additions and 20 deletions

View File

@ -294,8 +294,8 @@ $int64 = 56; // int | None
$float = 3.4; // float | None $float = 3.4; // float | None
$string = "string_example"; // string | None $string = "string_example"; // string | None
$binary = "binary_example"; // string | None $binary = "binary_example"; // string | None
$date = "date_example"; // \DateTime | None $date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | None
$date_time = "date_time_example"; // \DateTime | None $date_time = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | None
$password = "password_example"; // string | None $password = "password_example"; // string | None
$callback = "callback_example"; // string | None $callback = "callback_example"; // string | None
@ -314,13 +314,13 @@ Name | Type | Description | Notes
**number** | **BigDecimal**| None | **number** | **BigDecimal**| None |
**double** | **double**| None | **double** | **double**| None |
**pattern_without_delimiter** | **string**| None | **pattern_without_delimiter** | **string**| None |
**byte** | **string**| None | **byte** | **string****string**| None |
**integer** | **int**| None | [optional] **integer** | **int**| None | [optional]
**int32** | **int**| None | [optional] **int32** | **int**| None | [optional]
**int64** | **int**| None | [optional] **int64** | **int**| None | [optional]
**float** | **float**| None | [optional] **float** | **float**| None | [optional]
**string** | **string**| None | [optional] **string** | **string**| None | [optional]
**binary** | **string**| None | [optional] **binary** | **string****string**| None | [optional]
**date** | **\DateTime**| None | [optional] **date** | **\DateTime**| None | [optional]
**date_time** | **\DateTime**| None | [optional] **date_time** | **\DateTime**| None | [optional]
**password** | **string**| None | [optional] **password** | **string**| None | [optional]

View File

@ -419,7 +419,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
**pet_id** | **int**| ID of pet to update | **pet_id** | **int**| ID of pet to update |
**additional_metadata** | **string**| Additional data to pass to server | [optional] **additional_metadata** | **string**| Additional data to pass to server | [optional]
**file** | **string**| file to upload | [optional] **file** | **string****string**| file to upload | [optional]
### Return type ### Return type

View File

@ -1641,11 +1641,13 @@ class FakeApi
} }
// form params // form params
if ($byte !== null) { if ($byte !== null) {
$formParams['byte'] = ObjectSerializer::toFormValue($byte); $multipart = true;
$formParams['byte'] = \GuzzleHttp\Psr7\try_fopen(ObjectSerializer::toFormValue($byte), 'rb');
} }
// form params // form params
if ($binary !== null) { if ($binary !== null) {
$formParams['binary'] = ObjectSerializer::toFormValue($binary); $multipart = true;
$formParams['binary'] = \GuzzleHttp\Psr7\try_fopen(ObjectSerializer::toFormValue($binary), 'rb');
} }
// form params // form params
if ($date !== null) { if ($date !== null) {

View File

@ -2031,7 +2031,8 @@ class PetApi
} }
// form params // form params
if ($file !== null) { if ($file !== null) {
$formParams['file'] = ObjectSerializer::toFormValue($file); $multipart = true;
$formParams['file'] = \GuzzleHttp\Psr7\try_fopen(ObjectSerializer::toFormValue($file), 'rb');
} }
// body params // body params
$_tempBody = null; $_tempBody = null;

View File

@ -295,11 +295,11 @@ class Body3 implements ModelInterface, ArrayAccess
if ($this->container['byte'] === null) { if ($this->container['byte'] === null) {
$invalidProperties[] = "'byte' can't be null"; $invalidProperties[] = "'byte' can't be null";
} }
if (!is_null($this->container['password']) && (strlen($this->container['password']) > 64)) { if (!is_null($this->container['password']) && (mb_strlen($this->container['password']) > 64)) {
$invalidProperties[] = "invalid value for 'password', the character length must be smaller than or equal to 64."; $invalidProperties[] = "invalid value for 'password', the character length must be smaller than or equal to 64.";
} }
if (!is_null($this->container['password']) && (strlen($this->container['password']) < 10)) { if (!is_null($this->container['password']) && (mb_strlen($this->container['password']) < 10)) {
$invalidProperties[] = "invalid value for 'password', the character length must be bigger than or equal to 10."; $invalidProperties[] = "invalid value for 'password', the character length must be bigger than or equal to 10.";
} }
@ -339,10 +339,10 @@ class Body3 implements ModelInterface, ArrayAccess
if ($this->container['byte'] === null) { if ($this->container['byte'] === null) {
return false; return false;
} }
if (strlen($this->container['password']) > 64) { if (mb_strlen($this->container['password']) > 64) {
return false; return false;
} }
if (strlen($this->container['password']) < 10) { if (mb_strlen($this->container['password']) < 10) {
return false; return false;
} }
return true; return true;
@ -672,10 +672,10 @@ class Body3 implements ModelInterface, ArrayAccess
*/ */
public function setPassword($password) public function setPassword($password)
{ {
if (!is_null($password) && (strlen($password) > 64)) { if (!is_null($password) && (mb_strlen($password) > 64)) {
throw new \InvalidArgumentException('invalid length for $password when calling Body3., must be smaller than or equal to 64.'); throw new \InvalidArgumentException('invalid length for $password when calling Body3., must be smaller than or equal to 64.');
} }
if (!is_null($password) && (strlen($password) < 10)) { if (!is_null($password) && (mb_strlen($password) < 10)) {
throw new \InvalidArgumentException('invalid length for $password when calling Body3., must be bigger than or equal to 10.'); throw new \InvalidArgumentException('invalid length for $password when calling Body3., must be bigger than or equal to 10.');
} }

View File

@ -289,11 +289,11 @@ class FormatTest implements ModelInterface, ArrayAccess
if ($this->container['password'] === null) { if ($this->container['password'] === null) {
$invalidProperties[] = "'password' can't be null"; $invalidProperties[] = "'password' can't be null";
} }
if ((strlen($this->container['password']) > 64)) { if ((mb_strlen($this->container['password']) > 64)) {
$invalidProperties[] = "invalid value for 'password', the character length must be smaller than or equal to 64."; $invalidProperties[] = "invalid value for 'password', the character length must be smaller than or equal to 64.";
} }
if ((strlen($this->container['password']) < 10)) { if ((mb_strlen($this->container['password']) < 10)) {
$invalidProperties[] = "invalid value for 'password', the character length must be bigger than or equal to 10."; $invalidProperties[] = "invalid value for 'password', the character length must be bigger than or equal to 10.";
} }
@ -333,10 +333,10 @@ class FormatTest implements ModelInterface, ArrayAccess
if ($this->container['password'] === null) { if ($this->container['password'] === null) {
return false; return false;
} }
if (strlen($this->container['password']) > 64) { if (mb_strlen($this->container['password']) > 64) {
return false; return false;
} }
if (strlen($this->container['password']) < 10) { if (mb_strlen($this->container['password']) < 10) {
return false; return false;
} }
return true; return true;
@ -666,10 +666,10 @@ class FormatTest implements ModelInterface, ArrayAccess
*/ */
public function setPassword($password) public function setPassword($password)
{ {
if ((strlen($password) > 64)) { if ((mb_strlen($password) > 64)) {
throw new \InvalidArgumentException('invalid length for $password when calling FormatTest., must be smaller than or equal to 64.'); throw new \InvalidArgumentException('invalid length for $password when calling FormatTest., must be smaller than or equal to 64.');
} }
if ((strlen($password) < 10)) { if ((mb_strlen($password) < 10)) {
throw new \InvalidArgumentException('invalid length for $password when calling FormatTest., must be bigger than or equal to 10.'); throw new \InvalidArgumentException('invalid length for $password when calling FormatTest., must be bigger than or equal to 10.');
} }