/* * 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 { /// /// CreateClusterFirewallGroupRequest /// [DataContract(Name = "CreateClusterFirewallGroupRequest")] public partial class CreateClusterFirewallGroupRequest : IValidatableObject { /// /// Initializes a new instance of the class. /// [JsonConstructorAttribute] protected CreateClusterFirewallGroupRequest() { } /// /// Initializes a new instance of the class. /// /// comment. /// digest. /// group (required). /// rename. public CreateClusterFirewallGroupRequest(string comment = default(string), string digest = default(string), string group = default(string), string rename = default(string)) { // to ensure "group" is required (not null) if (group == null) { throw new ArgumentNullException("group is a required property for CreateClusterFirewallGroupRequest and cannot be null"); } this.Group = group; this.Comment = comment; this.Digest = digest; this.Rename = rename; } /// /// Gets or Sets Comment /// [DataMember(Name = "comment", EmitDefaultValue = false)] public string Comment { get; set; } /// /// Gets or Sets Digest /// [DataMember(Name = "digest", EmitDefaultValue = false)] public string Digest { get; set; } /// /// Gets or Sets Group /// [DataMember(Name = "group", IsRequired = true, EmitDefaultValue = true)] public string Group { get; set; } /// /// Gets or Sets Rename /// [DataMember(Name = "rename", EmitDefaultValue = false)] public string Rename { 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 CreateClusterFirewallGroupRequest {\n"); sb.Append(" Comment: ").Append(Comment).Append("\n"); sb.Append(" Digest: ").Append(Digest).Append("\n"); sb.Append(" Group: ").Append(Group).Append("\n"); sb.Append(" Rename: ").Append(Rename).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; } } }