/// <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 (NumberOfRetriesAllowed != null) { hashCode = hashCode * 59 + NumberOfRetriesAllowed.GetHashCode(); } if (HcTags != null) { hashCode = hashCode * 59 + HcTags.GetHashCode(); } return(hashCode); } }
/// <summary> /// Returns true if ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties instances are equal /// </summary> /// <param name="other">Instance of ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties to be compared</param> /// <returns>Boolean</returns> public bool Equals(ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties other) { if (other is null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( NumberOfRetriesAllowed == other.NumberOfRetriesAllowed || NumberOfRetriesAllowed != null && NumberOfRetriesAllowed.Equals(other.NumberOfRetriesAllowed) ) && ( HcTags == other.HcTags || HcTags != null && HcTags.Equals(other.HcTags) )); }