/*
* 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
{
///
/// AddClusterFirewallIPSetIPRequest
///
[DataContract(Name = "AddClusterFirewallIPSetIPRequest")]
public partial class AddClusterFirewallIPSetIPRequest : IValidatableObject
{
///
/// Initializes a new instance of the class.
///
[JsonConstructorAttribute]
protected AddClusterFirewallIPSetIPRequest() { }
///
/// Initializes a new instance of the class.
///
/// cidr (required).
/// comment.
/// nomatch.
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;
}
///
/// Gets or Sets Cidr
///
[DataMember(Name = "cidr", IsRequired = true, EmitDefaultValue = true)]
public string Cidr { get; set; }
///
/// Gets or Sets Comment
///
[DataMember(Name = "comment", EmitDefaultValue = false)]
public string Comment { get; set; }
///
/// Gets or Sets Nomatch
///
[DataMember(Name = "nomatch", EmitDefaultValue = true)]
public bool Nomatch { get; set; }
///
/// Returns the string presentation of the object
///
/// String presentation of the object
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();
}
///
/// Returns the JSON string presentation of the object
///
/// JSON string presentation of the object
public virtual string ToJson()
{
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
}
///
/// To validate all properties of the instance
///
/// Validation context
/// Validation Result
IEnumerable IValidatableObject.Validate(ValidationContext validationContext)
{
yield break;
}
}
}