/* * 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.Client.OpenAPIDateConverter; namespace Tribufu.Model { /// /// GroupMember /// [DataContract(Name = "GroupMember")] public partial class GroupMember : IValidatableObject { /// /// Gets or Sets Rank /// [DataMember(Name = "rank", EmitDefaultValue = false)] public GroupRank? Rank { get; set; } /// /// Initializes a new instance of the class. /// /// id. /// uuid. /// name. /// displayName. /// verified. /// photoUrl. /// lastOnline. /// rank. /// since. public GroupMember(string id = default(string), Guid uuid = default(Guid), string name = default(string), string displayName = default(string), bool verified = default(bool), string photoUrl = default(string), DateTime? lastOnline = default(DateTime?), GroupRank? rank = default(GroupRank?), DateTime since = default(DateTime)) { this.Id = id; this.Uuid = uuid; this.Name = name; this.DisplayName = displayName; this.Verified = verified; this.PhotoUrl = photoUrl; this.LastOnline = lastOnline; this.Rank = rank; this.Since = since; } /// /// Gets or Sets Id /// [DataMember(Name = "id", EmitDefaultValue = false)] public string Id { get; set; } /// /// Gets or Sets Uuid /// [DataMember(Name = "uuid", EmitDefaultValue = false)] public Guid Uuid { get; set; } /// /// Gets or Sets Name /// [DataMember(Name = "name", EmitDefaultValue = true)] public string Name { get; set; } /// /// Gets or Sets DisplayName /// [DataMember(Name = "display_name", EmitDefaultValue = true)] public string DisplayName { get; set; } /// /// Gets or Sets Verified /// [DataMember(Name = "verified", EmitDefaultValue = true)] public bool Verified { get; set; } /// /// Gets or Sets PhotoUrl /// [DataMember(Name = "photo_url", EmitDefaultValue = true)] public string PhotoUrl { get; set; } /// /// Gets or Sets LastOnline /// [DataMember(Name = "last_online", EmitDefaultValue = true)] public DateTime? LastOnline { get; set; } /// /// Gets or Sets Since /// [DataMember(Name = "since", EmitDefaultValue = false)] public DateTime Since { get; set; } /// /// Returns the string presentation of the object /// /// String presentation of the object public override string ToString() { StringBuilder sb = new StringBuilder(); sb.Append("class GroupMember {\n"); sb.Append(" Id: ").Append(Id).Append("\n"); sb.Append(" Uuid: ").Append(Uuid).Append("\n"); sb.Append(" Name: ").Append(Name).Append("\n"); sb.Append(" DisplayName: ").Append(DisplayName).Append("\n"); sb.Append(" Verified: ").Append(Verified).Append("\n"); sb.Append(" PhotoUrl: ").Append(PhotoUrl).Append("\n"); sb.Append(" LastOnline: ").Append(LastOnline).Append("\n"); sb.Append(" Rank: ").Append(Rank).Append("\n"); sb.Append(" Since: ").Append(Since).Append("\n"); sb.Append("}\n"); return sb.ToString(); } /// /// Returns the JSON string presentation of the object /// /// JSON string presentation of the object public virtual string ToJson() { return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented); } /// /// To validate all properties of the instance /// /// Validation context /// Validation Result IEnumerable IValidatableObject.Validate(ValidationContext validationContext) { yield break; } } }