/// <summary>
        /// Returns true if OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties instances are equal
        /// </summary>
        /// <param name="other">Instance of OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     PathDescField == other.PathDescField ||
                     PathDescField != null &&
                     PathDescField.Equals(other.PathDescField)
                     ) &&
                 (
                     PathChildField == other.PathChildField ||
                     PathChildField != null &&
                     PathChildField.Equals(other.PathChildField)
                 ) &&
                 (
                     PathParentField == other.PathParentField ||
                     PathParentField != null &&
                     PathParentField.Equals(other.PathParentField)
                 ) &&
                 (
                     PathExactField == other.PathExactField ||
                     PathExactField != null &&
                     PathExactField.Equals(other.PathExactField)
                 ) &&
                 (
                     CatchAllField == other.CatchAllField ||
                     CatchAllField != null &&
                     CatchAllField.Equals(other.CatchAllField)
                 ) &&
                 (
                     CollapsedPathField == other.CollapsedPathField ||
                     CollapsedPathField != null &&
                     CollapsedPathField.Equals(other.CollapsedPathField)
                 ) &&
                 (
                     PathDepthField == other.PathDepthField ||
                     PathDepthField != null &&
                     PathDepthField.Equals(other.PathDepthField)
                 ) &&
                 (
                     CommitPolicy == other.CommitPolicy ||
                     CommitPolicy != null &&
                     CommitPolicy.Equals(other.CommitPolicy)
                 ) &&
                 (
                     Rows == other.Rows ||
                     Rows != null &&
                     Rows.Equals(other.Rows)
                 ) &&
                 (
                     PathRestrictions == other.PathRestrictions ||
                     PathRestrictions != null &&
                     PathRestrictions.Equals(other.PathRestrictions)
                 ) &&
                 (
                     PropertyRestrictions == other.PropertyRestrictions ||
                     PropertyRestrictions != null &&
                     PropertyRestrictions.Equals(other.PropertyRestrictions)
                 ) &&
                 (
                     PrimarytypesRestrictions == other.PrimarytypesRestrictions ||
                     PrimarytypesRestrictions != null &&
                     PrimarytypesRestrictions.Equals(other.PrimarytypesRestrictions)
                 ) &&
                 (
                     IgnoredProperties == other.IgnoredProperties ||
                     IgnoredProperties != null &&
                     IgnoredProperties.Equals(other.IgnoredProperties)
                 ) &&
                 (
                     UsedProperties == other.UsedProperties ||
                     UsedProperties != null &&
                     UsedProperties.Equals(other.UsedProperties)
                 ) &&
                 (
                     TypeMappings == other.TypeMappings ||
                     TypeMappings != null &&
                     TypeMappings.Equals(other.TypeMappings)
                 ) &&
                 (
                     PropertyMappings == other.PropertyMappings ||
                     PropertyMappings != null &&
                     PropertyMappings.Equals(other.PropertyMappings)
                 ) &&
                 (
                     CollapseJcrcontentNodes == other.CollapseJcrcontentNodes ||
                     CollapseJcrcontentNodes != null &&
                     CollapseJcrcontentNodes.Equals(other.CollapseJcrcontentNodes)
                 ));
        }