mirror of
https://github.com/tribufu/proxmox-sharp
synced 2026-05-06 06:47:29 +00:00
92 lines
3 KiB
C#
92 lines
3 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>
|
|
/// CreateAccessTfaSingle200Response
|
|
/// </summary>
|
|
[DataContract(Name = "createAccessTfaSingle_200_response")]
|
|
public partial class CreateAccessTfaSingle200Response : IValidatableObject
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CreateAccessTfaSingle200Response" /> class.
|
|
/// </summary>
|
|
/// <param name="errors">errors.</param>
|
|
/// <param name="data">data.</param>
|
|
public CreateAccessTfaSingle200Response(List<string> errors = default(List<string>), CreateAccessTfaSingle200ResponseData data = default(CreateAccessTfaSingle200ResponseData))
|
|
{
|
|
this.Errors = errors;
|
|
this.Data = data;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Errors
|
|
/// </summary>
|
|
[DataMember(Name = "errors", EmitDefaultValue = false)]
|
|
public List<string> Errors { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Data
|
|
/// </summary>
|
|
[DataMember(Name = "data", EmitDefaultValue = false)]
|
|
public CreateAccessTfaSingle200ResponseData Data { 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 CreateAccessTfaSingle200Response {\n");
|
|
sb.Append(" Errors: ").Append(Errors).Append("\n");
|
|
sb.Append(" Data: ").Append(Data).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;
|
|
}
|
|
}
|
|
|
|
}
|