mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2025-06-15 09:54:18 +00:00
* Generate project with open-api-generator * Add example project * Create wrapper class
129 lines
4.3 KiB
C#
129 lines
4.3 KiB
C#
/*
|
|
* Tribufu API
|
|
*
|
|
* REST API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.1.0
|
|
* Contact: contact@tribufu.com
|
|
* 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 = Tribufu.Generated.Client.OpenAPIDateConverter;
|
|
|
|
namespace Tribufu.Generated.Model
|
|
{
|
|
/// <summary>
|
|
/// LeaderboardItem
|
|
/// </summary>
|
|
[DataContract(Name = "LeaderboardItem")]
|
|
public partial class LeaderboardItem : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="LeaderboardItem" /> class.
|
|
/// </summary>
|
|
/// <param name="name">name.</param>
|
|
/// <param name="displayName">displayName.</param>
|
|
/// <param name="photoUrl">photoUrl.</param>
|
|
/// <param name="level">level.</param>
|
|
/// <param name="experience">experience.</param>
|
|
/// <param name="points">points.</param>
|
|
public LeaderboardItem(string name = default(string), string displayName = default(string), string photoUrl = default(string), int level = default(int), double experience = default(double), double points = default(double))
|
|
{
|
|
this.Name = name;
|
|
this.DisplayName = displayName;
|
|
this.PhotoUrl = photoUrl;
|
|
this.Level = level;
|
|
this.Experience = experience;
|
|
this.Points = points;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Name
|
|
/// </summary>
|
|
[DataMember(Name = "name", EmitDefaultValue = true)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets DisplayName
|
|
/// </summary>
|
|
[DataMember(Name = "display_name", EmitDefaultValue = true)]
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets PhotoUrl
|
|
/// </summary>
|
|
[DataMember(Name = "photo_url", EmitDefaultValue = true)]
|
|
public string PhotoUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Level
|
|
/// </summary>
|
|
[DataMember(Name = "level", EmitDefaultValue = false)]
|
|
public int Level { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Experience
|
|
/// </summary>
|
|
[DataMember(Name = "experience", EmitDefaultValue = false)]
|
|
public double Experience { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Points
|
|
/// </summary>
|
|
[DataMember(Name = "points", EmitDefaultValue = false)]
|
|
public double Points { get; set; }
|
|
|
|
/// <summary>
|
|
/// Returns the string presentation of the object
|
|
/// </summary>
|
|
/// <returns>String presentation of the object</returns>
|
|
public override string ToString()
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.Append("class LeaderboardItem {\n");
|
|
sb.Append(" Name: ").Append(Name).Append("\n");
|
|
sb.Append(" DisplayName: ").Append(DisplayName).Append("\n");
|
|
sb.Append(" PhotoUrl: ").Append(PhotoUrl).Append("\n");
|
|
sb.Append(" Level: ").Append(Level).Append("\n");
|
|
sb.Append(" Experience: ").Append(Experience).Append("\n");
|
|
sb.Append(" Points: ").Append(Points).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>
|
|
/// To validate all properties of the instance
|
|
/// </summary>
|
|
/// <param name="validationContext">Validation context</param>
|
|
/// <returns>Validation Result</returns>
|
|
IEnumerable<ValidationResult> IValidatableObject.Validate(ValidationContext validationContext)
|
|
{
|
|
yield break;
|
|
}
|
|
}
|
|
|
|
}
|