/* * InfluxDB OSS API Service * * The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint. * * OpenAPI spec version: 2.0.0 * * Generated by: https://github.com/openapitools/openapi-generator.git */ using System; using System.Linq; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using OpenAPIDateConverter = InfluxDB.Client.Api.Client.OpenAPIDateConverter; namespace InfluxDB.Client.Api.Domain { /// /// TemplateSummaryDiffNotificationRulesNewOld /// [DataContract] public partial class TemplateSummaryDiffNotificationRulesNewOld : IEquatable { /// /// Initializes a new instance of the class. /// /// name. /// description. /// endpointName. /// endpointID. /// endpointType. /// every. /// offset. /// messageTemplate. /// status. /// statusRules. /// tagRules. public TemplateSummaryDiffNotificationRulesNewOld(string name = default, string description = default, string endpointName = default, string endpointID = default, string endpointType = default, string every = default, string offset = default, string messageTemplate = default, string status = default, List statusRules = default, List tagRules = default) { Name = name; Description = description; EndpointName = endpointName; EndpointID = endpointID; EndpointType = endpointType; Every = every; Offset = offset; MessageTemplate = messageTemplate; Status = status; StatusRules = statusRules; TagRules = tagRules; } /// /// Gets or Sets Name /// [DataMember(Name = "name", EmitDefaultValue = false)] public string Name { get; set; } /// /// Gets or Sets Description /// [DataMember(Name = "description", EmitDefaultValue = false)] public string Description { get; set; } /// /// Gets or Sets EndpointName /// [DataMember(Name = "endpointName", EmitDefaultValue = false)] public string EndpointName { get; set; } /// /// Gets or Sets EndpointID /// [DataMember(Name = "endpointID", EmitDefaultValue = false)] public string EndpointID { get; set; } /// /// Gets or Sets EndpointType /// [DataMember(Name = "endpointType", EmitDefaultValue = false)] public string EndpointType { get; set; } /// /// Gets or Sets Every /// [DataMember(Name = "every", EmitDefaultValue = false)] public string Every { get; set; } /// /// Gets or Sets Offset /// [DataMember(Name = "offset", EmitDefaultValue = false)] public string Offset { get; set; } /// /// Gets or Sets MessageTemplate /// [DataMember(Name = "messageTemplate", EmitDefaultValue = false)] public string MessageTemplate { get; set; } /// /// Gets or Sets Status /// [DataMember(Name = "status", EmitDefaultValue = false)] public string Status { get; set; } /// /// Gets or Sets StatusRules /// [DataMember(Name = "statusRules", EmitDefaultValue = false)] public List StatusRules { get; set; } /// /// Gets or Sets TagRules /// [DataMember(Name = "tagRules", EmitDefaultValue = false)] public List TagRules { get; set; } /// /// Returns the string presentation of the object /// /// String presentation of the object public override string ToString() { var sb = new StringBuilder(); sb.Append("class TemplateSummaryDiffNotificationRulesNewOld {\n"); sb.Append(" Name: ").Append(Name).Append("\n"); sb.Append(" Description: ").Append(Description).Append("\n"); sb.Append(" EndpointName: ").Append(EndpointName).Append("\n"); sb.Append(" EndpointID: ").Append(EndpointID).Append("\n"); sb.Append(" EndpointType: ").Append(EndpointType).Append("\n"); sb.Append(" Every: ").Append(Every).Append("\n"); sb.Append(" Offset: ").Append(Offset).Append("\n"); sb.Append(" MessageTemplate: ").Append(MessageTemplate).Append("\n"); sb.Append(" Status: ").Append(Status).Append("\n"); sb.Append(" StatusRules: ").Append(StatusRules).Append("\n"); sb.Append(" TagRules: ").Append(TagRules).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 JsonConvert.SerializeObject(this, Formatting.Indented); } /// /// Returns true if objects are equal /// /// Object to be compared /// Boolean public override bool Equals(object input) { return Equals(input as TemplateSummaryDiffNotificationRulesNewOld); } /// /// Returns true if TemplateSummaryDiffNotificationRulesNewOld instances are equal /// /// Instance of TemplateSummaryDiffNotificationRulesNewOld to be compared /// Boolean public bool Equals(TemplateSummaryDiffNotificationRulesNewOld input) { if (input == null) { return false; } return ( Name == input.Name || Name != null && Name.Equals(input.Name) ) && ( Description == input.Description || Description != null && Description.Equals(input.Description) ) && ( EndpointName == input.EndpointName || EndpointName != null && EndpointName.Equals(input.EndpointName) ) && ( EndpointID == input.EndpointID || EndpointID != null && EndpointID.Equals(input.EndpointID) ) && ( EndpointType == input.EndpointType || EndpointType != null && EndpointType.Equals(input.EndpointType) ) && ( Every == input.Every || Every != null && Every.Equals(input.Every) ) && ( Offset == input.Offset || Offset != null && Offset.Equals(input.Offset) ) && ( MessageTemplate == input.MessageTemplate || MessageTemplate != null && MessageTemplate.Equals(input.MessageTemplate) ) && ( Status == input.Status || Status != null && Status.Equals(input.Status) ) && ( StatusRules == input.StatusRules || StatusRules != null && StatusRules.SequenceEqual(input.StatusRules) ) && ( TagRules == input.TagRules || TagRules != null && TagRules.SequenceEqual(input.TagRules) ); } /// /// Gets the hash code /// /// Hash code public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; if (Name != null) { hashCode = hashCode * 59 + Name.GetHashCode(); } if (Description != null) { hashCode = hashCode * 59 + Description.GetHashCode(); } if (EndpointName != null) { hashCode = hashCode * 59 + EndpointName.GetHashCode(); } if (EndpointID != null) { hashCode = hashCode * 59 + EndpointID.GetHashCode(); } if (EndpointType != null) { hashCode = hashCode * 59 + EndpointType.GetHashCode(); } if (Every != null) { hashCode = hashCode * 59 + Every.GetHashCode(); } if (Offset != null) { hashCode = hashCode * 59 + Offset.GetHashCode(); } if (MessageTemplate != null) { hashCode = hashCode * 59 + MessageTemplate.GetHashCode(); } if (Status != null) { hashCode = hashCode * 59 + Status.GetHashCode(); } if (StatusRules != null) { hashCode = hashCode * 59 + StatusRules.GetHashCode(); } if (TagRules != null) { hashCode = hashCode * 59 + TagRules.GetHashCode(); } return hashCode; } } } }