/// <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)
                 ));
        }