proxmox-sharp/src/ProxmoxSharp/Model/CreateClusterMappingDirRequest.cs

116 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>
/// CreateClusterMappingDirRequest
/// </summary>
[DataContract(Name = "CreateClusterMappingDirRequest")]
public partial class CreateClusterMappingDirRequest : IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="CreateClusterMappingDirRequest" /> class.
/// </summary>
[JsonConstructorAttribute]
protected CreateClusterMappingDirRequest() { }
/// <summary>
/// Initializes a new instance of the <see cref="CreateClusterMappingDirRequest" /> class.
/// </summary>
/// <param name="description">description.</param>
/// <param name="id">id (required).</param>
/// <param name="map">map (required).</param>
public CreateClusterMappingDirRequest(string description = default(string), string id = default(string), List<string> map = default(List<string>))
{
// to ensure "id" is required (not null)
if (id == null)
{
throw new ArgumentNullException("id is a required property for CreateClusterMappingDirRequest and cannot be null");
}
this.Id = id;
// to ensure "map" is required (not null)
if (map == null)
{
throw new ArgumentNullException("map is a required property for CreateClusterMappingDirRequest and cannot be null");
}
this.Map = map;
this.Description = description;
}
/// <summary>
/// Gets or Sets Description
/// </summary>
[DataMember(Name = "description", EmitDefaultValue = false)]
public string Description { get; set; }
/// <summary>
/// Gets or Sets Id
/// </summary>
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
public string Id { get; set; }
/// <summary>
/// Gets or Sets Map
/// </summary>
[DataMember(Name = "map", IsRequired = true, EmitDefaultValue = true)]
public List<string> Map { 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 CreateClusterMappingDirRequest {\n");
sb.Append(" Description: ").Append(Description).Append("\n");
sb.Append(" Id: ").Append(Id).Append("\n");
sb.Append(" Map: ").Append(Map).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;
}
}
}