[go][client] Fix example value for non string enums (#8900)

* [go][client] Fix example value for non string enums

* regenerated samples
This commit is contained in:
Jiri Kuncar
2021-03-08 11:11:50 +01:00
committed by GitHub
parent 101da6e434
commit 8cb4741248
432 changed files with 30350 additions and 1 deletions

View File

@@ -465,6 +465,30 @@ class FakeController extends Controller
return response('How about implementing fakeOuterStringSerialize as a post method ?');
}
/**
* Operation fakePropertyEnumIntegerSerialize
*
* .
*
*
* @return Http response
*/
public function fakePropertyEnumIntegerSerialize()
{
$input = Request::all();
//path params validation
//not path params validation
if (!isset($input['outerObjectWithEnumProperty'])) {
throw new \InvalidArgumentException('Missing the required parameter $outerObjectWithEnumProperty when calling fakePropertyEnumIntegerSerialize');
}
$outerObjectWithEnumProperty = $input['outerObjectWithEnumProperty'];
return response('How about implementing fakePropertyEnumIntegerSerialize as a post method ?');
}
/**
* Operation testQueryParameterCollectionFormat
*