Skip to content

Commit 079a27d

Browse files
ruimacielfrantuma
authored andcommitted
Ran ./bin/csharp-petstore-all.sh
1 parent 5e17abc commit 079a27d

File tree

18 files changed

+332
-122
lines changed

18 files changed

+332
-122
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.19-SNAPSHOT
1+
2.4.42-SNAPSHOT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.19-SNAPSHOT
1+
2.4.42-SNAPSHOT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.19-SNAPSHOT
1+
2.4.42-SNAPSHOT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.3-SNAPSHOT
1+
2.4.42-SNAPSHOT

samples/client/petstore/csharp/SwaggerClientNetStandard/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,35 +118,35 @@ Class | Method | HTTP request | Description
118118
- [Model.ArrayOfArrayOfNumberOnly](docs/ArrayOfArrayOfNumberOnly.md)
119119
- [Model.ArrayOfNumberOnly](docs/ArrayOfNumberOnly.md)
120120
- [Model.ArrayTest](docs/ArrayTest.md)
121+
- [Model.Boolean](docs/Boolean.md)
121122
- [Model.Capitalization](docs/Capitalization.md)
123+
- [Model.Cat](docs/Cat.md)
122124
- [Model.Category](docs/Category.md)
123125
- [Model.ClassModel](docs/ClassModel.md)
126+
- [Model.Dog](docs/Dog.md)
124127
- [Model.EnumArrays](docs/EnumArrays.md)
125128
- [Model.EnumClass](docs/EnumClass.md)
126129
- [Model.EnumTest](docs/EnumTest.md)
127130
- [Model.FormatTest](docs/FormatTest.md)
128131
- [Model.HasOnlyReadOnly](docs/HasOnlyReadOnly.md)
132+
- [Model.Ints](docs/Ints.md)
129133
- [Model.List](docs/List.md)
130134
- [Model.MapTest](docs/MapTest.md)
131135
- [Model.MixedPropertiesAndAdditionalPropertiesClass](docs/MixedPropertiesAndAdditionalPropertiesClass.md)
132136
- [Model.Model200Response](docs/Model200Response.md)
133137
- [Model.ModelClient](docs/ModelClient.md)
134138
- [Model.Name](docs/Name.md)
135139
- [Model.NumberOnly](docs/NumberOnly.md)
140+
- [Model.Numbers](docs/Numbers.md)
136141
- [Model.Order](docs/Order.md)
137-
- [Model.OuterBoolean](docs/OuterBoolean.md)
138142
- [Model.OuterComposite](docs/OuterComposite.md)
139143
- [Model.OuterEnum](docs/OuterEnum.md)
140-
- [Model.OuterNumber](docs/OuterNumber.md)
141-
- [Model.OuterString](docs/OuterString.md)
142144
- [Model.Pet](docs/Pet.md)
143145
- [Model.ReadOnlyFirst](docs/ReadOnlyFirst.md)
144146
- [Model.Return](docs/Return.md)
145147
- [Model.SpecialModelName](docs/SpecialModelName.md)
146148
- [Model.Tag](docs/Tag.md)
147149
- [Model.User](docs/User.md)
148-
- [Model.Cat](docs/Cat.md)
149-
- [Model.Dog](docs/Dog.md)
150150

151151

152152
<a name="documentation-for-authorization"></a>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# IO.Swagger.Model.Boolean
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
8+

samples/client/petstore/csharp/SwaggerClientNetStandard/docs/FakeApi.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Method | HTTP request | Description
1818

1919
<a name="fakeouterbooleanserialize"></a>
2020
# **FakeOuterBooleanSerialize**
21-
> OuterBoolean FakeOuterBooleanSerialize (OuterBoolean body = null)
21+
> bool? FakeOuterBooleanSerialize (bool? body = null)
2222
2323

2424

@@ -39,11 +39,11 @@ namespace Example
3939
public void main()
4040
{
4141
var apiInstance = new FakeApi();
42-
var body = new OuterBoolean(); // OuterBoolean | Input boolean as post body (optional)
42+
var body = new bool?(); // bool? | Input boolean as post body (optional)
4343
4444
try
4545
{
46-
OuterBoolean result = apiInstance.FakeOuterBooleanSerialize(body);
46+
bool? result = apiInstance.FakeOuterBooleanSerialize(body);
4747
Debug.WriteLine(result);
4848
}
4949
catch (Exception e)
@@ -59,11 +59,11 @@ namespace Example
5959

6060
Name | Type | Description | Notes
6161
------------- | ------------- | ------------- | -------------
62-
**body** | [**OuterBoolean**](OuterBoolean.md)| Input boolean as post body | [optional]
62+
**body** | [**bool?**](bool?.md)| Input boolean as post body | [optional]
6363

6464
### Return type
6565

66-
[**OuterBoolean**](OuterBoolean.md)
66+
**bool?**
6767

6868
### Authorization
6969

@@ -138,7 +138,7 @@ No authorization required
138138

139139
<a name="fakeouternumberserialize"></a>
140140
# **FakeOuterNumberSerialize**
141-
> OuterNumber FakeOuterNumberSerialize (OuterNumber body = null)
141+
> decimal? FakeOuterNumberSerialize (decimal? body = null)
142142
143143

144144

@@ -159,11 +159,11 @@ namespace Example
159159
public void main()
160160
{
161161
var apiInstance = new FakeApi();
162-
var body = new OuterNumber(); // OuterNumber | Input number as post body (optional)
162+
var body = new decimal?(); // decimal? | Input number as post body (optional)
163163
164164
try
165165
{
166-
OuterNumber result = apiInstance.FakeOuterNumberSerialize(body);
166+
decimal? result = apiInstance.FakeOuterNumberSerialize(body);
167167
Debug.WriteLine(result);
168168
}
169169
catch (Exception e)
@@ -179,11 +179,11 @@ namespace Example
179179

180180
Name | Type | Description | Notes
181181
------------- | ------------- | ------------- | -------------
182-
**body** | [**OuterNumber**](OuterNumber.md)| Input number as post body | [optional]
182+
**body** | [**decimal?**](decimal?.md)| Input number as post body | [optional]
183183

184184
### Return type
185185

186-
[**OuterNumber**](OuterNumber.md)
186+
**decimal?**
187187

188188
### Authorization
189189

@@ -198,7 +198,7 @@ No authorization required
198198

199199
<a name="fakeouterstringserialize"></a>
200200
# **FakeOuterStringSerialize**
201-
> OuterString FakeOuterStringSerialize (OuterString body = null)
201+
> string FakeOuterStringSerialize (string body = null)
202202
203203

204204

@@ -219,11 +219,11 @@ namespace Example
219219
public void main()
220220
{
221221
var apiInstance = new FakeApi();
222-
var body = new OuterString(); // OuterString | Input string as post body (optional)
222+
var body = new string(); // string | Input string as post body (optional)
223223
224224
try
225225
{
226-
OuterString result = apiInstance.FakeOuterStringSerialize(body);
226+
string result = apiInstance.FakeOuterStringSerialize(body);
227227
Debug.WriteLine(result);
228228
}
229229
catch (Exception e)
@@ -239,11 +239,11 @@ namespace Example
239239

240240
Name | Type | Description | Notes
241241
------------- | ------------- | ------------- | -------------
242-
**body** | [**OuterString**](OuterString.md)| Input string as post body | [optional]
242+
**body** | [**string**](string.md)| Input string as post body | [optional]
243243

244244
### Return type
245245

246-
[**OuterString**](OuterString.md)
246+
**string**
247247

248248
### Authorization
249249

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# IO.Swagger.Model.Ints
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
8+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# IO.Swagger.Model.Numbers
2+
## Properties
3+
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
8+

samples/client/petstore/csharp/SwaggerClientNetStandard/docs/OuterComposite.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**MyNumber** | [**OuterNumber**](OuterNumber.md) | | [optional]
7-
**MyString** | [**OuterString**](OuterString.md) | | [optional]
8-
**MyBoolean** | [**OuterBoolean**](OuterBoolean.md) | | [optional]
6+
**MyNumber** | **decimal?** | | [optional]
7+
**MyString** | **string** | | [optional]
8+
**MyBoolean** | **bool?** | | [optional]
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

0 commit comments

Comments
 (0)