forked from loafle/openapi-generator-original
* rename csharp-netcore to csharp * rename file * renmae modules/openapi-generator/src/main/resources/csharp-netcore * update samples * mv dir * update samples * rename csharp-netcore to csharp in appveyor.yml * update doc
156 lines
5.1 KiB
C#
156 lines
5.1 KiB
C#
/*
|
|
* OpenAPI Petstore
|
|
*
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using OpenAPIDateConverter = Org.OpenAPITools.Client.OpenAPIDateConverter;
|
|
|
|
namespace Org.OpenAPITools.Models
|
|
{
|
|
/// <summary>
|
|
/// Describes the result of uploading an image resource
|
|
/// </summary>
|
|
[DataContract(Name = "ApiResponse")]
|
|
public partial class ApiResponse : IEquatable<ApiResponse>, IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ApiResponse" /> class.
|
|
/// </summary>
|
|
/// <param name="code">code.</param>
|
|
/// <param name="type">type.</param>
|
|
/// <param name="message">message.</param>
|
|
public ApiResponse(int code = default(int), string type = default(string), string message = default(string))
|
|
{
|
|
this.Code = code;
|
|
this.Type = type;
|
|
this.Message = message;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Code
|
|
/// </summary>
|
|
[DataMember(Name = "code", EmitDefaultValue = false)]
|
|
public int Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Type
|
|
/// </summary>
|
|
[DataMember(Name = "type", EmitDefaultValue = false)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Message
|
|
/// </summary>
|
|
[DataMember(Name = "message", EmitDefaultValue = false)]
|
|
public string Message { get; set; }
|
|
|
|
/// <summary>
|
|
/// Returns the string presentation of the object
|
|
/// </summary>
|
|
/// <returns>String presentation of the object</returns>
|
|
public override string ToString()
|
|
{
|
|
var sb = new StringBuilder();
|
|
sb.Append("class ApiResponse {\n");
|
|
sb.Append(" Code: ").Append(Code).Append("\n");
|
|
sb.Append(" Type: ").Append(Type).Append("\n");
|
|
sb.Append(" Message: ").Append(Message).Append("\n");
|
|
sb.Append("}\n");
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the JSON string presentation of the object
|
|
/// </summary>
|
|
/// <returns>JSON string presentation of the object</returns>
|
|
public virtual string ToJson()
|
|
{
|
|
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if objects are equal
|
|
/// </summary>
|
|
/// <param name="input">Object to be compared</param>
|
|
/// <returns>Boolean</returns>
|
|
public override bool Equals(object input)
|
|
{
|
|
return this.Equals(input as ApiResponse);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if ApiResponse instances are equal
|
|
/// </summary>
|
|
/// <param name="input">Instance of ApiResponse to be compared</param>
|
|
/// <returns>Boolean</returns>
|
|
public bool Equals(ApiResponse input)
|
|
{
|
|
if (input == null)
|
|
return false;
|
|
|
|
return
|
|
(
|
|
this.Code == input.Code ||
|
|
this.Code.Equals(input.Code)
|
|
) &&
|
|
(
|
|
this.Type == input.Type ||
|
|
(this.Type != null &&
|
|
this.Type.Equals(input.Type))
|
|
) &&
|
|
(
|
|
this.Message == input.Message ||
|
|
(this.Message != null &&
|
|
this.Message.Equals(input.Message))
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the hash code
|
|
/// </summary>
|
|
/// <returns>Hash code</returns>
|
|
public override int GetHashCode()
|
|
{
|
|
unchecked // Overflow is fine, just wrap
|
|
{
|
|
int hashCode = 41;
|
|
hashCode = hashCode * 59 + this.Code.GetHashCode();
|
|
if (this.Type != null)
|
|
hashCode = hashCode * 59 + this.Type.GetHashCode();
|
|
if (this.Message != null)
|
|
hashCode = hashCode * 59 + this.Message.GetHashCode();
|
|
return hashCode;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// To validate all properties of the instance
|
|
/// </summary>
|
|
/// <param name="validationContext">Validation context</param>
|
|
/// <returns>Validation Result</returns>
|
|
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
|
{
|
|
yield break;
|
|
}
|
|
}
|
|
|
|
}
|