[JAVA] fix toUrlQueryString for BigDecimal (#15764)

* add MyImportTest.java

* fix original issue

* fix same issue for native library

* remove MyImportTest

* add test configs

* generate samples (again?)

* generate samples again

* generate samples again, undo pom.xml mistake [amended to retrigger circliCi]
This commit is contained in:
martin-mfg
2023-06-08 03:34:06 +02:00
committed by GitHub
parent fbe768bb9c
commit b7f2b723aa
176 changed files with 7934 additions and 8 deletions

View File

@@ -230,6 +230,25 @@ class FakeController extends Controller
return response('How about implementing testGroupParameters as a delete method ?');
}
/**
* Operation fakeBigDecimalMap
*
* .
*
*
* @return Http response
*/
public function fakeBigDecimalMap()
{
$input = Request::all();
//path params validation
//not path params validation
return response('How about implementing fakeBigDecimalMap as a get method ?');
}
/**
* Operation testBodyWithBinary
*

View File

@@ -0,0 +1,18 @@
<?php
/**
* FakeBigDecimalMap200Response
*/
namespace app\Models;
/**
* FakeBigDecimalMap200Response
*/
class FakeBigDecimalMap200Response {
/** @var float $someId */
public $someId = 0;
/** @var array<string,float> $someMap */
public $someMap;
}