mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2025-06-16 10:24:18 +00:00
93 lines
2.9 KiB
C#
93 lines
2.9 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>
|
|
/// UpdateProfile
|
|
/// </summary>
|
|
[DataContract(Name = "UpdateProfile")]
|
|
public partial class UpdateProfile : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UpdateProfile" /> class.
|
|
/// </summary>
|
|
/// <param name="displayName">displayName.</param>
|
|
/// <param name="biography">biography.</param>
|
|
public UpdateProfile(string displayName = default(string), string biography = default(string))
|
|
{
|
|
this.DisplayName = displayName;
|
|
this.Biography = biography;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets DisplayName
|
|
/// </summary>
|
|
[DataMember(Name = "display_name", EmitDefaultValue = true)]
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Biography
|
|
/// </summary>
|
|
[DataMember(Name = "biography", EmitDefaultValue = true)]
|
|
public string Biography { 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 UpdateProfile {\n");
|
|
sb.Append(" DisplayName: ").Append(DisplayName).Append("\n");
|
|
sb.Append(" Biography: ").Append(Biography).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;
|
|
}
|
|
}
|
|
|
|
}
|