From f290de95dd9973a717211c6b7e4980284caa4a08 Mon Sep 17 00:00:00 2001 From: wing328 Date: Mon, 29 Jun 2015 23:14:00 +0800 Subject: [PATCH] update parameter name to camelize lower --- .../languages/CSharpClientCodegen.java | 20 +- .../src/main/csharp/IO/Swagger/Api/PetApi.cs | 252 +++++++++--------- .../main/csharp/IO/Swagger/Api/StoreApi.cs | 76 +++--- .../src/main/csharp/IO/Swagger/Api/UserApi.cs | 188 ++++++------- .../bin/Debug/SwaggerClientTest.dll | Bin 54784 -> 54784 bytes .../bin/Debug/SwaggerClientTest.dll.mdb | Bin 16334 -> 16334 bytes .../obj/Debug/SwaggerClientTest.dll | Bin 54784 -> 54784 bytes .../obj/Debug/SwaggerClientTest.dll.mdb | Bin 16334 -> 16334 bytes 8 files changed, 276 insertions(+), 260 deletions(-) diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/CSharpClientCodegen.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/CSharpClientCodegen.java index 4f7ad02b95..a200c2f7c8 100644 --- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/CSharpClientCodegen.java +++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/CSharpClientCodegen.java @@ -163,8 +163,24 @@ public class CSharpClientCodegen extends DefaultCodegen implements CodegenConfig @Override public String toParamName(String name) { - // should be the same as variable name - return toVarName(name); + // replace - with _ e.g. created-at => created_at + name = name.replaceAll("-", "_"); + + // if it's all uppper case, do nothing + if (name.matches("^[A-Z_]*$")) { + return name; + } + + // camelize(lower) the variable name + // pet_id => petId + name = camelize(name, true); + + // for reserved word or word starting with number, append _ + if (reservedWords.contains(name) || name.matches("^\\d.*")) { + name = escapeReservedWord(name); + } + + return name; } @Override diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs index 4e6cc56fd1..609ea7326e 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs @@ -14,124 +14,124 @@ namespace IO.Swagger.Api { /// /// Update an existing pet /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - void UpdatePet (Pet Body); + void UpdatePet (Pet body); /// /// Update an existing pet /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - Task UpdatePetAsync (Pet Body); + Task UpdatePetAsync (Pet body); /// /// Add a new pet to the store /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - void AddPet (Pet Body); + void AddPet (Pet body); /// /// Add a new pet to the store /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - Task AddPetAsync (Pet Body); + Task AddPetAsync (Pet body); /// /// Finds Pets by status Multiple status values can be provided with comma seperated strings /// - /// Status values that need to be considered for filter + /// Status values that need to be considered for filter /// List - List FindPetsByStatus (List Status); + List FindPetsByStatus (List status); /// /// Finds Pets by status Multiple status values can be provided with comma seperated strings /// - /// Status values that need to be considered for filter + /// Status values that need to be considered for filter /// List - Task> FindPetsByStatusAsync (List Status); + Task> FindPetsByStatusAsync (List status); /// /// Finds Pets by tags Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing. /// - /// Tags to filter by + /// Tags to filter by /// List - List FindPetsByTags (List Tags); + List FindPetsByTags (List tags); /// /// Finds Pets by tags Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing. /// - /// Tags to filter by + /// Tags to filter by /// List - Task> FindPetsByTagsAsync (List Tags); + Task> FindPetsByTagsAsync (List tags); /// /// Find pet by ID Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Pet - Pet GetPetById (long? PetId); + Pet GetPetById (long? petId); /// /// Find pet by ID Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Pet - Task GetPetByIdAsync (long? PetId); + Task GetPetByIdAsync (long? petId); /// /// Updates a pet in the store with form data /// - /// ID of pet that needs to be updated - /// Updated name of the pet - /// Updated status of the pet + /// ID of pet that needs to be updated + /// Updated name of the pet + /// Updated status of the pet /// - void UpdatePetWithForm (string PetId, string Name, string Status); + void UpdatePetWithForm (string petId, string name, string status); /// /// Updates a pet in the store with form data /// - /// ID of pet that needs to be updated - /// Updated name of the pet - /// Updated status of the pet + /// ID of pet that needs to be updated + /// Updated name of the pet + /// Updated status of the pet /// - Task UpdatePetWithFormAsync (string PetId, string Name, string Status); + Task UpdatePetWithFormAsync (string petId, string name, string status); /// /// Deletes a pet /// - /// - /// Pet id to delete + /// + /// Pet id to delete /// - void DeletePet (string ApiKey, long? PetId); + void DeletePet (string apiKey, long? petId); /// /// Deletes a pet /// - /// - /// Pet id to delete + /// + /// Pet id to delete /// - Task DeletePetAsync (string ApiKey, long? PetId); + Task DeletePetAsync (string apiKey, long? petId); /// /// uploads an image /// - /// ID of pet to update - /// Additional data to pass to server - /// file to upload + /// ID of pet to update + /// Additional data to pass to server + /// file to upload /// - void UploadFile (long? PetId, string AdditionalMetadata, FileStream File); + void UploadFile (long? petId, string additionalMetadata, FileStream file); /// /// uploads an image /// - /// ID of pet to update - /// Additional data to pass to server - /// file to upload + /// ID of pet to update + /// Additional data to pass to server + /// file to upload /// - Task UploadFileAsync (long? PetId, string AdditionalMetadata, FileStream File); + Task UploadFileAsync (long? petId, string additionalMetadata, FileStream file); } @@ -189,9 +189,9 @@ namespace IO.Swagger.Api { /// /// Update an existing pet /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - public void UpdatePet (Pet Body) { + public void UpdatePet (Pet body) { @@ -208,7 +208,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -227,9 +227,9 @@ namespace IO.Swagger.Api { /// /// Update an existing pet /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - public async Task UpdatePetAsync (Pet Body) { + public async Task UpdatePetAsync (Pet body) { @@ -246,7 +246,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -264,9 +264,9 @@ namespace IO.Swagger.Api { /// /// Add a new pet to the store /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - public void AddPet (Pet Body) { + public void AddPet (Pet body) { @@ -283,7 +283,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -302,9 +302,9 @@ namespace IO.Swagger.Api { /// /// Add a new pet to the store /// - /// Pet object that needs to be added to the store + /// Pet object that needs to be added to the store /// - public async Task AddPetAsync (Pet Body) { + public async Task AddPetAsync (Pet body) { @@ -321,7 +321,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -339,9 +339,9 @@ namespace IO.Swagger.Api { /// /// Finds Pets by status Multiple status values can be provided with comma seperated strings /// - /// Status values that need to be considered for filter + /// Status values that need to be considered for filter /// List - public List FindPetsByStatus (List Status) { + public List FindPetsByStatus (List status) { @@ -355,7 +355,7 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Status != null) queryParams.Add("status", ApiClient.ParameterToString(Status)); // query parameter + if (status != null) queryParams.Add("status", ApiClient.ParameterToString(status)); // query parameter @@ -376,9 +376,9 @@ namespace IO.Swagger.Api { /// /// Finds Pets by status Multiple status values can be provided with comma seperated strings /// - /// Status values that need to be considered for filter + /// Status values that need to be considered for filter /// List - public async Task> FindPetsByStatusAsync (List Status) { + public async Task> FindPetsByStatusAsync (List status) { @@ -392,7 +392,7 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Status != null) queryParams.Add("status", ApiClient.ParameterToString(Status)); // query parameter + if (status != null) queryParams.Add("status", ApiClient.ParameterToString(status)); // query parameter @@ -412,9 +412,9 @@ namespace IO.Swagger.Api { /// /// Finds Pets by tags Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing. /// - /// Tags to filter by + /// Tags to filter by /// List - public List FindPetsByTags (List Tags) { + public List FindPetsByTags (List tags) { @@ -428,7 +428,7 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Tags != null) queryParams.Add("tags", ApiClient.ParameterToString(Tags)); // query parameter + if (tags != null) queryParams.Add("tags", ApiClient.ParameterToString(tags)); // query parameter @@ -449,9 +449,9 @@ namespace IO.Swagger.Api { /// /// Finds Pets by tags Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing. /// - /// Tags to filter by + /// Tags to filter by /// List - public async Task> FindPetsByTagsAsync (List Tags) { + public async Task> FindPetsByTagsAsync (List tags) { @@ -465,7 +465,7 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Tags != null) queryParams.Add("tags", ApiClient.ParameterToString(Tags)); // query parameter + if (tags != null) queryParams.Add("tags", ApiClient.ParameterToString(tags)); // query parameter @@ -485,18 +485,18 @@ namespace IO.Swagger.Api { /// /// Find pet by ID Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Pet - public Pet GetPetById (long? PetId) { + public Pet GetPetById (long? petId) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling GetPetById"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling GetPetById"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -525,18 +525,18 @@ namespace IO.Swagger.Api { /// /// Find pet by ID Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Pet - public async Task GetPetByIdAsync (long? PetId) { + public async Task GetPetByIdAsync (long? petId) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling GetPetById"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling GetPetById"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -564,20 +564,20 @@ namespace IO.Swagger.Api { /// /// Updates a pet in the store with form data /// - /// ID of pet that needs to be updated - /// Updated name of the pet - /// Updated status of the pet + /// ID of pet that needs to be updated + /// Updated name of the pet + /// Updated status of the pet /// - public void UpdatePetWithForm (string PetId, string Name, string Status) { + public void UpdatePetWithForm (string petId, string name, string status) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling UpdatePetWithForm"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling UpdatePetWithForm"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -588,8 +588,8 @@ namespace IO.Swagger.Api { - if (Name != null) formParams.Add("name", ApiClient.ParameterToString(Name)); // form parameter - if (Status != null) formParams.Add("status", ApiClient.ParameterToString(Status)); // form parameter + if (name != null) formParams.Add("name", ApiClient.ParameterToString(name)); // form parameter + if (status != null) formParams.Add("status", ApiClient.ParameterToString(status)); // form parameter @@ -609,20 +609,20 @@ namespace IO.Swagger.Api { /// /// Updates a pet in the store with form data /// - /// ID of pet that needs to be updated - /// Updated name of the pet - /// Updated status of the pet + /// ID of pet that needs to be updated + /// Updated name of the pet + /// Updated status of the pet /// - public async Task UpdatePetWithFormAsync (string PetId, string Name, string Status) { + public async Task UpdatePetWithFormAsync (string petId, string name, string status) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling UpdatePetWithForm"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling UpdatePetWithForm"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -633,8 +633,8 @@ namespace IO.Swagger.Api { - if (Name != null) formParams.Add("name", ApiClient.ParameterToString(Name)); // form parameter - if (Status != null) formParams.Add("status", ApiClient.ParameterToString(Status)); // form parameter + if (name != null) formParams.Add("name", ApiClient.ParameterToString(name)); // form parameter + if (status != null) formParams.Add("status", ApiClient.ParameterToString(status)); // form parameter @@ -653,19 +653,19 @@ namespace IO.Swagger.Api { /// /// Deletes a pet /// - /// - /// Pet id to delete + /// + /// Pet id to delete /// - public void DeletePet (string ApiKey, long? PetId) { + public void DeletePet (string apiKey, long? petId) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling DeletePet"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling DeletePet"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -675,7 +675,7 @@ namespace IO.Swagger.Api { String postBody = null; - if (ApiKey != null) headerParams.Add("api_key", ApiClient.ParameterToString(ApiKey)); // header parameter + if (apiKey != null) headerParams.Add("api_key", ApiClient.ParameterToString(apiKey)); // header parameter @@ -696,19 +696,19 @@ namespace IO.Swagger.Api { /// /// Deletes a pet /// - /// - /// Pet id to delete + /// + /// Pet id to delete /// - public async Task DeletePetAsync (string ApiKey, long? PetId) { + public async Task DeletePetAsync (string apiKey, long? petId) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling DeletePet"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling DeletePet"); var path = "/pet/{petId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -718,7 +718,7 @@ namespace IO.Swagger.Api { String postBody = null; - if (ApiKey != null) headerParams.Add("api_key", ApiClient.ParameterToString(ApiKey)); // header parameter + if (apiKey != null) headerParams.Add("api_key", ApiClient.ParameterToString(apiKey)); // header parameter @@ -738,20 +738,20 @@ namespace IO.Swagger.Api { /// /// uploads an image /// - /// ID of pet to update - /// Additional data to pass to server - /// file to upload + /// ID of pet to update + /// Additional data to pass to server + /// file to upload /// - public void UploadFile (long? PetId, string AdditionalMetadata, FileStream File) { + public void UploadFile (long? petId, string additionalMetadata, FileStream file) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling UploadFile"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling UploadFile"); var path = "/pet/{petId}/uploadImage"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -762,8 +762,8 @@ namespace IO.Swagger.Api { - if (AdditionalMetadata != null) formParams.Add("additionalMetadata", ApiClient.ParameterToString(AdditionalMetadata)); // form parameter - if (File != null) fileParams.Add("file", ApiClient.ParameterToString(File)); + if (additionalMetadata != null) formParams.Add("additionalMetadata", ApiClient.ParameterToString(additionalMetadata)); // form parameter + if (file != null) fileParams.Add("file", ApiClient.ParameterToString(file)); @@ -783,20 +783,20 @@ namespace IO.Swagger.Api { /// /// uploads an image /// - /// ID of pet to update - /// Additional data to pass to server - /// file to upload + /// ID of pet to update + /// Additional data to pass to server + /// file to upload /// - public async Task UploadFileAsync (long? PetId, string AdditionalMetadata, FileStream File) { + public async Task UploadFileAsync (long? petId, string additionalMetadata, FileStream file) { - // verify the required parameter 'PetId' is set - if (PetId == null) throw new ApiException(400, "Missing required parameter 'PetId' when calling UploadFile"); + // verify the required parameter 'petId' is set + if (petId == null) throw new ApiException(400, "Missing required parameter 'petId' when calling UploadFile"); var path = "/pet/{petId}/uploadImage"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(PetId)); + path = path.Replace("{" + "petId" + "}", ApiClient.ParameterToString(petId)); var queryParams = new Dictionary(); @@ -807,8 +807,8 @@ namespace IO.Swagger.Api { - if (AdditionalMetadata != null) formParams.Add("additionalMetadata", ApiClient.ParameterToString(AdditionalMetadata)); // form parameter - if (File != null) fileParams.Add("file", ApiClient.ParameterToString(File)); + if (additionalMetadata != null) formParams.Add("additionalMetadata", ApiClient.ParameterToString(additionalMetadata)); // form parameter + if (file != null) fileParams.Add("file", ApiClient.ParameterToString(file)); diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs index 294910b453..67276bbce8 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs @@ -26,44 +26,44 @@ namespace IO.Swagger.Api { /// /// Place an order for a pet /// - /// order placed for purchasing the pet + /// order placed for purchasing the pet /// Order - Order PlaceOrder (Order Body); + Order PlaceOrder (Order body); /// /// Place an order for a pet /// - /// order placed for purchasing the pet + /// order placed for purchasing the pet /// Order - Task PlaceOrderAsync (Order Body); + Task PlaceOrderAsync (Order body); /// /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Order - Order GetOrderById (string OrderId); + Order GetOrderById (string orderId); /// /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Order - Task GetOrderByIdAsync (string OrderId); + Task GetOrderByIdAsync (string orderId); /// /// Delete purchase order by ID For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors /// - /// ID of the order that needs to be deleted + /// ID of the order that needs to be deleted /// - void DeleteOrder (string OrderId); + void DeleteOrder (string orderId); /// /// Delete purchase order by ID For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors /// - /// ID of the order that needs to be deleted + /// ID of the order that needs to be deleted /// - Task DeleteOrderAsync (string OrderId); + Task DeleteOrderAsync (string orderId); } @@ -190,9 +190,9 @@ namespace IO.Swagger.Api { /// /// Place an order for a pet /// - /// order placed for purchasing the pet + /// order placed for purchasing the pet /// Order - public Order PlaceOrder (Order Body) { + public Order PlaceOrder (Order body) { @@ -209,7 +209,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -227,9 +227,9 @@ namespace IO.Swagger.Api { /// /// Place an order for a pet /// - /// order placed for purchasing the pet + /// order placed for purchasing the pet /// Order - public async Task PlaceOrderAsync (Order Body) { + public async Task PlaceOrderAsync (Order body) { @@ -246,7 +246,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -263,18 +263,18 @@ namespace IO.Swagger.Api { /// /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Order - public Order GetOrderById (string OrderId) { + public Order GetOrderById (string orderId) { - // verify the required parameter 'OrderId' is set - if (OrderId == null) throw new ApiException(400, "Missing required parameter 'OrderId' when calling GetOrderById"); + // verify the required parameter 'orderId' is set + if (orderId == null) throw new ApiException(400, "Missing required parameter 'orderId' when calling GetOrderById"); var path = "/store/order/{orderId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(OrderId)); + path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(orderId)); var queryParams = new Dictionary(); @@ -303,18 +303,18 @@ namespace IO.Swagger.Api { /// /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions /// - /// ID of pet that needs to be fetched + /// ID of pet that needs to be fetched /// Order - public async Task GetOrderByIdAsync (string OrderId) { + public async Task GetOrderByIdAsync (string orderId) { - // verify the required parameter 'OrderId' is set - if (OrderId == null) throw new ApiException(400, "Missing required parameter 'OrderId' when calling GetOrderById"); + // verify the required parameter 'orderId' is set + if (orderId == null) throw new ApiException(400, "Missing required parameter 'orderId' when calling GetOrderById"); var path = "/store/order/{orderId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(OrderId)); + path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(orderId)); var queryParams = new Dictionary(); @@ -342,18 +342,18 @@ namespace IO.Swagger.Api { /// /// Delete purchase order by ID For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors /// - /// ID of the order that needs to be deleted + /// ID of the order that needs to be deleted /// - public void DeleteOrder (string OrderId) { + public void DeleteOrder (string orderId) { - // verify the required parameter 'OrderId' is set - if (OrderId == null) throw new ApiException(400, "Missing required parameter 'OrderId' when calling DeleteOrder"); + // verify the required parameter 'orderId' is set + if (orderId == null) throw new ApiException(400, "Missing required parameter 'orderId' when calling DeleteOrder"); var path = "/store/order/{orderId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(OrderId)); + path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(orderId)); var queryParams = new Dictionary(); @@ -383,18 +383,18 @@ namespace IO.Swagger.Api { /// /// Delete purchase order by ID For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors /// - /// ID of the order that needs to be deleted + /// ID of the order that needs to be deleted /// - public async Task DeleteOrderAsync (string OrderId) { + public async Task DeleteOrderAsync (string orderId) { - // verify the required parameter 'OrderId' is set - if (OrderId == null) throw new ApiException(400, "Missing required parameter 'OrderId' when calling DeleteOrder"); + // verify the required parameter 'orderId' is set + if (orderId == null) throw new ApiException(400, "Missing required parameter 'orderId' when calling DeleteOrder"); var path = "/store/order/{orderId}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(OrderId)); + path = path.Replace("{" + "orderId" + "}", ApiClient.ParameterToString(orderId)); var queryParams = new Dictionary(); diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs index 65aaf490d9..2d87996dd9 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs @@ -14,60 +14,60 @@ namespace IO.Swagger.Api { /// /// Create user This can only be done by the logged in user. /// - /// Created user object + /// Created user object /// - void CreateUser (User Body); + void CreateUser (User body); /// /// Create user This can only be done by the logged in user. /// - /// Created user object + /// Created user object /// - Task CreateUserAsync (User Body); + Task CreateUserAsync (User body); /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - void CreateUsersWithArrayInput (List Body); + void CreateUsersWithArrayInput (List body); /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - Task CreateUsersWithArrayInputAsync (List Body); + Task CreateUsersWithArrayInputAsync (List body); /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - void CreateUsersWithListInput (List Body); + void CreateUsersWithListInput (List body); /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - Task CreateUsersWithListInputAsync (List Body); + Task CreateUsersWithListInputAsync (List body); /// /// Logs user into the system /// - /// The user name for login - /// The password for login in clear text + /// The user name for login + /// The password for login in clear text /// string - string LoginUser (string Username, string Password); + string LoginUser (string username, string password); /// /// Logs user into the system /// - /// The user name for login - /// The password for login in clear text + /// The user name for login + /// The password for login in clear text /// string - Task LoginUserAsync (string Username, string Password); + Task LoginUserAsync (string username, string password); /// /// Logs out current logged in user session @@ -84,46 +84,46 @@ namespace IO.Swagger.Api { /// /// Get user by user name /// - /// The name that needs to be fetched. Use user1 for testing. + /// The name that needs to be fetched. Use user1 for testing. /// User - User GetUserByName (string Username); + User GetUserByName (string username); /// /// Get user by user name /// - /// The name that needs to be fetched. Use user1 for testing. + /// The name that needs to be fetched. Use user1 for testing. /// User - Task GetUserByNameAsync (string Username); + Task GetUserByNameAsync (string username); /// /// Updated user This can only be done by the logged in user. /// - /// name that need to be deleted - /// Updated user object + /// name that need to be deleted + /// Updated user object /// - void UpdateUser (string Username, User Body); + void UpdateUser (string username, User body); /// /// Updated user This can only be done by the logged in user. /// - /// name that need to be deleted - /// Updated user object + /// name that need to be deleted + /// Updated user object /// - Task UpdateUserAsync (string Username, User Body); + Task UpdateUserAsync (string username, User body); /// /// Delete user This can only be done by the logged in user. /// - /// The name that needs to be deleted + /// The name that needs to be deleted /// - void DeleteUser (string Username); + void DeleteUser (string username); /// /// Delete user This can only be done by the logged in user. /// - /// The name that needs to be deleted + /// The name that needs to be deleted /// - Task DeleteUserAsync (string Username); + Task DeleteUserAsync (string username); } @@ -181,9 +181,9 @@ namespace IO.Swagger.Api { /// /// Create user This can only be done by the logged in user. /// - /// Created user object + /// Created user object /// - public void CreateUser (User Body) { + public void CreateUser (User body) { @@ -200,7 +200,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -219,9 +219,9 @@ namespace IO.Swagger.Api { /// /// Create user This can only be done by the logged in user. /// - /// Created user object + /// Created user object /// - public async Task CreateUserAsync (User Body) { + public async Task CreateUserAsync (User body) { @@ -238,7 +238,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -256,9 +256,9 @@ namespace IO.Swagger.Api { /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - public void CreateUsersWithArrayInput (List Body) { + public void CreateUsersWithArrayInput (List body) { @@ -275,7 +275,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -294,9 +294,9 @@ namespace IO.Swagger.Api { /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - public async Task CreateUsersWithArrayInputAsync (List Body) { + public async Task CreateUsersWithArrayInputAsync (List body) { @@ -313,7 +313,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -331,9 +331,9 @@ namespace IO.Swagger.Api { /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - public void CreateUsersWithListInput (List Body) { + public void CreateUsersWithListInput (List body) { @@ -350,7 +350,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -369,9 +369,9 @@ namespace IO.Swagger.Api { /// /// Creates list of users with given input array /// - /// List of user object + /// List of user object /// - public async Task CreateUsersWithListInputAsync (List Body) { + public async Task CreateUsersWithListInputAsync (List body) { @@ -388,7 +388,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -406,10 +406,10 @@ namespace IO.Swagger.Api { /// /// Logs user into the system /// - /// The user name for login - /// The password for login in clear text + /// The user name for login + /// The password for login in clear text /// string - public string LoginUser (string Username, string Password) { + public string LoginUser (string username, string password) { @@ -423,8 +423,8 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Username != null) queryParams.Add("username", ApiClient.ParameterToString(Username)); // query parameter - if (Password != null) queryParams.Add("password", ApiClient.ParameterToString(Password)); // query parameter + if (username != null) queryParams.Add("username", ApiClient.ParameterToString(username)); // query parameter + if (password != null) queryParams.Add("password", ApiClient.ParameterToString(password)); // query parameter @@ -445,10 +445,10 @@ namespace IO.Swagger.Api { /// /// Logs user into the system /// - /// The user name for login - /// The password for login in clear text + /// The user name for login + /// The password for login in clear text /// string - public async Task LoginUserAsync (string Username, string Password) { + public async Task LoginUserAsync (string username, string password) { @@ -462,8 +462,8 @@ namespace IO.Swagger.Api { var fileParams = new Dictionary(); String postBody = null; - if (Username != null) queryParams.Add("username", ApiClient.ParameterToString(Username)); // query parameter - if (Password != null) queryParams.Add("password", ApiClient.ParameterToString(Password)); // query parameter + if (username != null) queryParams.Add("username", ApiClient.ParameterToString(username)); // query parameter + if (password != null) queryParams.Add("password", ApiClient.ParameterToString(password)); // query parameter @@ -554,18 +554,18 @@ namespace IO.Swagger.Api { /// /// Get user by user name /// - /// The name that needs to be fetched. Use user1 for testing. + /// The name that needs to be fetched. Use user1 for testing. /// User - public User GetUserByName (string Username) { + public User GetUserByName (string username) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling GetUserByName"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling GetUserByName"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); @@ -594,18 +594,18 @@ namespace IO.Swagger.Api { /// /// Get user by user name /// - /// The name that needs to be fetched. Use user1 for testing. + /// The name that needs to be fetched. Use user1 for testing. /// User - public async Task GetUserByNameAsync (string Username) { + public async Task GetUserByNameAsync (string username) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling GetUserByName"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling GetUserByName"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); @@ -633,19 +633,19 @@ namespace IO.Swagger.Api { /// /// Updated user This can only be done by the logged in user. /// - /// name that need to be deleted - /// Updated user object + /// name that need to be deleted + /// Updated user object /// - public void UpdateUser (string Username, User Body) { + public void UpdateUser (string username, User body) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling UpdateUser"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling UpdateUser"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); @@ -657,7 +657,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -676,19 +676,19 @@ namespace IO.Swagger.Api { /// /// Updated user This can only be done by the logged in user. /// - /// name that need to be deleted - /// Updated user object + /// name that need to be deleted + /// Updated user object /// - public async Task UpdateUserAsync (string Username, User Body) { + public async Task UpdateUserAsync (string username, User body) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling UpdateUser"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling UpdateUser"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); @@ -700,7 +700,7 @@ namespace IO.Swagger.Api { - postBody = ApiClient.Serialize(Body); // http body (model) parameter + postBody = ApiClient.Serialize(body); // http body (model) parameter // authentication setting, if any @@ -718,18 +718,18 @@ namespace IO.Swagger.Api { /// /// Delete user This can only be done by the logged in user. /// - /// The name that needs to be deleted + /// The name that needs to be deleted /// - public void DeleteUser (string Username) { + public void DeleteUser (string username) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling DeleteUser"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling DeleteUser"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); @@ -759,18 +759,18 @@ namespace IO.Swagger.Api { /// /// Delete user This can only be done by the logged in user. /// - /// The name that needs to be deleted + /// The name that needs to be deleted /// - public async Task DeleteUserAsync (string Username) { + public async Task DeleteUserAsync (string username) { - // verify the required parameter 'Username' is set - if (Username == null) throw new ApiException(400, "Missing required parameter 'Username' when calling DeleteUser"); + // verify the required parameter 'username' is set + if (username == null) throw new ApiException(400, "Missing required parameter 'username' when calling DeleteUser"); var path = "/user/{username}"; path = path.Replace("{format}", "json"); - path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(Username)); + path = path.Replace("{" + "username" + "}", ApiClient.ParameterToString(username)); var queryParams = new Dictionary(); diff --git a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll index e13ef14ee625adf11dab00bd6a32d017da294e0b..60d81e320bc21585e4b8b5f705740db319735e78 100755 GIT binary patch delta 9126 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 F{Tsf7-~#{v diff --git a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb index 970220989a7008a68176508bc413e4a366b00175..53958fc7ab656c4f94f02dfbbeb038505958144c 100644 GIT binary patch delta 126 zcmX?Cf399ZWLf=RWwjTsMhp<3S>+x0rhl*7&U_VF_w@T|6BWJ*6*)$Uu^P{2o7;J) zkt;dwBg3?bg*}tEFiH#T?&MURH{D?IFS*<69+$69n>>NFYw`w0mdUwHQbNBZE6;6r e`z`gtpjY=+7vBbkSrZF8Cf{S`+N{mI*aiSzyEBsj delta 126 zcmV-^0D=F`f6jj(6sCXuBPQrYG5`Po00000g2*NsqtRDQm31AOH7{+Sks$UG!kq7I zZ;;tIyjj#l1Kvs60G5$)jFYqh8xUUCtyYr!_Xk{RjTc?3&jOQ>1&Wif0R)q60vZy~ gxw?qX!Nm=0-ydyAIwgt#nvrpclimXgvnvCmJSG=4djJ3c diff --git a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll index e13ef14ee625adf11dab00bd6a32d017da294e0b..60d81e320bc21585e4b8b5f705740db319735e78 100755 GIT binary patch delta 9126 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 F{Tsf7-~#{v diff --git a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb index 970220989a7008a68176508bc413e4a366b00175..53958fc7ab656c4f94f02dfbbeb038505958144c 100644 GIT binary patch delta 126 zcmX?Cf399ZWLf=RWwjTsMhp<3S>+x0rhl*7&U_VF_w@T|6BWJ*6*)$Uu^P{2o7;J) zkt;dwBg3?bg*}tEFiH#T?&MURH{D?IFS*<69+$69n>>NFYw`w0mdUwHQbNBZE6;6r e`z`gtpjY=+7vBbkSrZF8Cf{S`+N{mI*aiSzyEBsj delta 126 zcmV-^0D=F`f6jj(6sCXuBPQrYG5`Po00000g2*NsqtRDQm31AOH7{+Sks$UG!kq7I zZ;;tIyjj#l1Kvs60G5$)jFYqh8xUUCtyYr!_Xk{RjTc?3&jOQ>1&Wif0R)q60vZy~ gxw?qX!Nm=0-ydyAIwgt#nvrpclimXgvnvCmJSG=4djJ3c