ShiRongWeChatOpenIdTask/IO.Swagger/Model/GetUploadTokenQuery.cs

126 lines
4.0 KiB
C#
Raw Permalink Normal View History

2025-04-21 14:10:27 +08:00
/*
* API
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: Admin
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.Linq;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.ComponentModel.DataAnnotations;
using SwaggerDateConverter = IO.Swagger.Client.SwaggerDateConverter;
namespace IO.Swagger.Model
{
/// <summary>
/// 获取七牛上传凭证
/// </summary>
[DataContract]
public partial class GetUploadTokenQuery : IEquatable<GetUploadTokenQuery>, IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="GetUploadTokenQuery" /> class.
/// </summary>
/// <param name="fileName">非必填 覆盖指定文件的文件名.</param>
public GetUploadTokenQuery(string fileName = default(string))
{
this.FileName = fileName;
}
/// <summary>
/// 非必填 覆盖指定文件的文件名
/// </summary>
/// <value>非必填 覆盖指定文件的文件名</value>
[DataMember(Name="fileName", EmitDefaultValue=false)]
public string FileName { 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 GetUploadTokenQuery {\n");
sb.Append(" FileName: ").Append(FileName).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 JsonConvert.SerializeObject(this, 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 GetUploadTokenQuery);
}
/// <summary>
/// Returns true if GetUploadTokenQuery instances are equal
/// </summary>
/// <param name="input">Instance of GetUploadTokenQuery to be compared</param>
/// <returns>Boolean</returns>
public bool Equals(GetUploadTokenQuery input)
{
if (input == null)
return false;
return
(
this.FileName == input.FileName ||
(this.FileName != null &&
this.FileName.Equals(input.FileName))
);
}
/// <summary>
/// Gets the hash code
/// </summary>
/// <returns>Hash code</returns>
public override int GetHashCode()
{
unchecked // Overflow is fine, just wrap
{
int hashCode = 41;
if (this.FileName != null)
hashCode = hashCode * 59 + this.FileName.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;
}
}
}