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

111 lines
3.8 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>
/// AddClusterFirewallIPSetIPRequest
/// </summary>
[DataContract(Name = "AddClusterFirewallIPSetIPRequest")]
public partial class AddClusterFirewallIPSetIPRequest : IValidatableObject
{
/// <summary>
/// Initializes a new instance of the <see cref="AddClusterFirewallIPSetIPRequest" /> class.
/// </summary>
[JsonConstructorAttribute]
protected AddClusterFirewallIPSetIPRequest() { }
/// <summary>
/// Initializes a new instance of the <see cref="AddClusterFirewallIPSetIPRequest" /> class.
/// </summary>
/// <param name="cidr">cidr (required).</param>
/// <param name="comment">comment.</param>
/// <param name="nomatch">nomatch.</param>
public AddClusterFirewallIPSetIPRequest(string cidr = default(string), string comment = default(string), bool nomatch = default(bool))
{
// to ensure "cidr" is required (not null)
if (cidr == null)
{
throw new ArgumentNullException("cidr is a required property for AddClusterFirewallIPSetIPRequest and cannot be null");
}
this.Cidr = cidr;
this.Comment = comment;
this.Nomatch = nomatch;
}
/// <summary>
/// Gets or Sets Cidr
/// </summary>
[DataMember(Name = "cidr", IsRequired = true, EmitDefaultValue = true)]
public string Cidr { get; set; }
/// <summary>
/// Gets or Sets Comment
/// </summary>
[DataMember(Name = "comment", EmitDefaultValue = false)]
public string Comment { get; set; }
/// <summary>
/// Gets or Sets Nomatch
/// </summary>
[DataMember(Name = "nomatch", EmitDefaultValue = true)]
public bool Nomatch { 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 AddClusterFirewallIPSetIPRequest {\n");
sb.Append(" Cidr: ").Append(Cidr).Append("\n");
sb.Append(" Comment: ").Append(Comment).Append("\n");
sb.Append(" Nomatch: ").Append(Nomatch).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;
}
}
}