You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs
+64-16Lines changed: 64 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -15,121 +15,169 @@ public interface IPetApi
15
15
{
16
16
17
17
/// <summary>
18
-
/// Update an existing pet
18
+
/// Update an existing pet
19
19
/// </summary>
20
+
/// <remarks>
21
+
///
22
+
/// </remarks>
20
23
/// <param name="body">Pet object that needs to be added to the store</param>
21
24
/// <returns></returns>
22
25
voidUpdatePet(Petbody);
23
26
24
27
/// <summary>
25
-
/// Update an existing pet
28
+
/// Update an existing pet
26
29
/// </summary>
30
+
/// <remarks>
31
+
///
32
+
/// </remarks>
27
33
/// <param name="body">Pet object that needs to be added to the store</param>
Copy file name to clipboardExpand all lines: samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs
+32-8Lines changed: 32 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -15,55 +15,79 @@ public interface IStoreApi
15
15
{
16
16
17
17
/// <summary>
18
-
/// Returns pet inventories by status Returns a map of status codes to quantities
18
+
/// Returns pet inventories by status
19
19
/// </summary>
20
+
/// <remarks>
21
+
/// Returns a map of status codes to quantities
22
+
/// </remarks>
20
23
/// <returns></returns>
21
24
Dictionary<string,int?>GetInventory();
22
25
23
26
/// <summary>
24
-
/// Returns pet inventories by status Returns a map of status codes to quantities
0 commit comments