/// <summary> /// Gets the hash code /// </summary> /// <returns>Hash code</returns> public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; // Suitable nullity checks etc, of course :) if (Name != null) { hashCode = hashCode * 59 + Name.GetHashCode(); } if (Title != null) { hashCode = hashCode * 59 + Title.GetHashCode(); } if (Details != null) { hashCode = hashCode * 59 + Details.GetHashCode(); } if (Enabled != null) { hashCode = hashCode * 59 + Enabled.GetHashCode(); } if (ServiceName != null) { hashCode = hashCode * 59 + ServiceName.GetHashCode(); } if (LogLevel != null) { hashCode = hashCode * 59 + LogLevel.GetHashCode(); } if (QueueProcessingEnabled != null) { hashCode = hashCode * 59 + QueueProcessingEnabled.GetHashCode(); } if (PackageExporterTarget != null) { hashCode = hashCode * 59 + PackageExporterTarget.GetHashCode(); } if (PackageImporterTarget != null) { hashCode = hashCode * 59 + PackageImporterTarget.GetHashCode(); } if (RequestAuthorizationStrategyTarget != null) { hashCode = hashCode * 59 + RequestAuthorizationStrategyTarget.GetHashCode(); } if (TriggersTarget != null) { hashCode = hashCode * 59 + TriggersTarget.GetHashCode(); } return(hashCode); } }
/// <summary> /// Returns true if OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties instances are equal /// </summary> /// <param name="other">Instance of OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties to be compared</param> /// <returns>Boolean</returns> public bool Equals(OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties other) { if (other is null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Name == other.Name || Name != null && Name.Equals(other.Name) ) && ( Title == other.Title || Title != null && Title.Equals(other.Title) ) && ( Details == other.Details || Details != null && Details.Equals(other.Details) ) && ( Enabled == other.Enabled || Enabled != null && Enabled.Equals(other.Enabled) ) && ( ServiceName == other.ServiceName || ServiceName != null && ServiceName.Equals(other.ServiceName) ) && ( LogLevel == other.LogLevel || LogLevel != null && LogLevel.Equals(other.LogLevel) ) && ( QueueProcessingEnabled == other.QueueProcessingEnabled || QueueProcessingEnabled != null && QueueProcessingEnabled.Equals(other.QueueProcessingEnabled) ) && ( PackageExporterTarget == other.PackageExporterTarget || PackageExporterTarget != null && PackageExporterTarget.Equals(other.PackageExporterTarget) ) && ( PackageImporterTarget == other.PackageImporterTarget || PackageImporterTarget != null && PackageImporterTarget.Equals(other.PackageImporterTarget) ) && ( RequestAuthorizationStrategyTarget == other.RequestAuthorizationStrategyTarget || RequestAuthorizationStrategyTarget != null && RequestAuthorizationStrategyTarget.Equals(other.RequestAuthorizationStrategyTarget) ) && ( TriggersTarget == other.TriggersTarget || TriggersTarget != null && TriggersTarget.Equals(other.TriggersTarget) )); }