mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
fix build warnings on CSharp xml comments
This commit is contained in:
parent
727c32f2a2
commit
ff0b0c15a8
@ -216,6 +216,7 @@ namespace {{packageName}}.Client
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="content">HTTP body (e.g. string, JSON).</param>
|
/// <param name="content">HTTP body (e.g. string, JSON).</param>
|
||||||
/// <param name="type">Object type.</param>
|
/// <param name="type">Object type.</param>
|
||||||
|
/// <param name="headers"></param>
|
||||||
/// <returns>Object representation of the JSON string.</returns>
|
/// <returns>Object representation of the JSON string.</returns>
|
||||||
public object Deserialize(string content, Type type, IList<Parameter> headers=null)
|
public object Deserialize(string content, Type type, IList<Parameter> headers=null)
|
||||||
{
|
{
|
||||||
|
@ -20,7 +20,6 @@ namespace {{packageName}}.Client {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="ApiException"/> class.
|
/// Initializes a new instance of the <see cref="ApiException"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="basePath">The base path.</param>
|
|
||||||
public ApiException() {}
|
public ApiException() {}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -9,6 +9,9 @@ using {{packageName}}.Client;
|
|||||||
namespace {{packageName}}.Api
|
namespace {{packageName}}.Api
|
||||||
{
|
{
|
||||||
{{#operations}}
|
{{#operations}}
|
||||||
|
/// <summary>
|
||||||
|
/// Represents a collection of functions to interact with the API endpoints
|
||||||
|
/// </summary>
|
||||||
public interface I{{classname}}
|
public interface I{{classname}}
|
||||||
{
|
{
|
||||||
{{#operation}}
|
{{#operation}}
|
||||||
@ -77,7 +80,7 @@ namespace {{packageName}}.Api
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the API client.
|
/// Gets or sets the API client.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>An instance of the ApiClient</param>
|
/// <value>An instance of the ApiClient</value>
|
||||||
public ApiClient ApiClient {get; set;}
|
public ApiClient ApiClient {get; set;}
|
||||||
|
|
||||||
{{#operation}}
|
{{#operation}}
|
||||||
|
Loading…
Reference in New Issue
Block a user