mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-09 12:51:06 +00:00
* Migrate to new tribufu project structure * Update .gitignore * Remove old api files * Update Directory.Build.props * Rename solution
102 lines
3.4 KiB
C#
102 lines
3.4 KiB
C#
/*
|
|
* Tribufu API
|
|
*
|
|
* API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.4.3
|
|
* 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
|
|
{
|
|
/// <summary>
|
|
/// RevokeRequest
|
|
/// </summary>
|
|
[DataContract(Name = "RevokeRequest")]
|
|
public partial class RevokeRequest : IValidatableObject
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or Sets TokenTypeHint
|
|
/// </summary>
|
|
[DataMember(Name = "token_type_hint", IsRequired = true, EmitDefaultValue = true)]
|
|
public TokenHintType TokenTypeHint { get; set; }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RevokeRequest" /> class.
|
|
/// </summary>
|
|
[JsonConstructorAttribute]
|
|
protected RevokeRequest() { }
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RevokeRequest" /> class.
|
|
/// </summary>
|
|
/// <param name="token">token (required).</param>
|
|
/// <param name="tokenTypeHint">tokenTypeHint (required).</param>
|
|
public RevokeRequest(string token = default(string), TokenHintType tokenTypeHint = default(TokenHintType))
|
|
{
|
|
// to ensure "token" is required (not null)
|
|
if (token == null)
|
|
{
|
|
throw new ArgumentNullException("token is a required property for RevokeRequest and cannot be null");
|
|
}
|
|
this.Token = token;
|
|
this.TokenTypeHint = tokenTypeHint;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Token
|
|
/// </summary>
|
|
[DataMember(Name = "token", IsRequired = true, EmitDefaultValue = true)]
|
|
public string Token { 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 RevokeRequest {\n");
|
|
sb.Append(" Token: ").Append(Token).Append("\n");
|
|
sb.Append(" TokenTypeHint: ").Append(TokenTypeHint).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;
|
|
}
|
|
}
|
|
|
|
}
|