ProxmoxSharp/src/ProxmoxSharp/Model/CreateAccessTfaSingle200ResponseData.cs

104 lines
4 KiB
C#

/*
* ProxMox VE API
*
* ProxMox VE API
*
* The version of the OpenAPI document: 2.0
* Contact: support@lumaserv.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 = ProxmoxSharp.Client.OpenAPIDateConverter;
namespace ProxmoxSharp.Model
{
/// <summary>
/// CreateAccessTfaSingle200ResponseData
/// </summary>
[DataContract(Name = "createAccessTfaSingle_200_response_data")]
public partial class CreateAccessTfaSingle200ResponseData : IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="CreateAccessTfaSingle200ResponseData" /> class.
/// </summary>
/// <param name="challenge">When adding u2f entries, this contains a challenge the user must respond to in order to finish the registration..</param>
/// <param name="id">The id of a newly added TFA entry..</param>
/// <param name="recovery">When adding recovery codes, this contains the list of codes to be displayed to the user.</param>
public CreateAccessTfaSingle200ResponseData(string challenge = default(string), string id = default(string), List<string> recovery = default(List<string>))
{
this.Challenge = challenge;
this.Id = id;
this.Recovery = recovery;
}
/// <summary>
/// When adding u2f entries, this contains a challenge the user must respond to in order to finish the registration.
/// </summary>
/// <value>When adding u2f entries, this contains a challenge the user must respond to in order to finish the registration.</value>
[DataMember(Name = "challenge", EmitDefaultValue = false)]
public string Challenge { get; set; }
/// <summary>
/// The id of a newly added TFA entry.
/// </summary>
/// <value>The id of a newly added TFA entry.</value>
[DataMember(Name = "id", EmitDefaultValue = false)]
public string Id { get; set; }
/// <summary>
/// When adding recovery codes, this contains the list of codes to be displayed to the user
/// </summary>
/// <value>When adding recovery codes, this contains the list of codes to be displayed to the user</value>
[DataMember(Name = "recovery", EmitDefaultValue = false)]
public List<string> Recovery { 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 CreateAccessTfaSingle200ResponseData {\n");
sb.Append(" Challenge: ").Append(Challenge).Append("\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" Recovery: ").Append(Recovery).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;
}
}
}