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

            return
                ((
                     PreserveHierarchyNodes == other.PreserveHierarchyNodes ||
                     PreserveHierarchyNodes != null &&
                     PreserveHierarchyNodes.Equals(other.PreserveHierarchyNodes)
                     ) &&
                 (
                     IgnoreVersioning == other.IgnoreVersioning ||
                     IgnoreVersioning != null &&
                     IgnoreVersioning.Equals(other.IgnoreVersioning)
                 ) &&
                 (
                     ImportAcl == other.ImportAcl ||
                     ImportAcl != null &&
                     ImportAcl.Equals(other.ImportAcl)
                 ) &&
                 (
                     SaveThreshold == other.SaveThreshold ||
                     SaveThreshold != null &&
                     SaveThreshold.Equals(other.SaveThreshold)
                 ) &&
                 (
                     PreserveUserPaths == other.PreserveUserPaths ||
                     PreserveUserPaths != null &&
                     PreserveUserPaths.Equals(other.PreserveUserPaths)
                 ) &&
                 (
                     PreserveUuid == other.PreserveUuid ||
                     PreserveUuid != null &&
                     PreserveUuid.Equals(other.PreserveUuid)
                 ) &&
                 (
                     PreserveUuidNodetypes == other.PreserveUuidNodetypes ||
                     PreserveUuidNodetypes != null &&
                     PreserveUuidNodetypes.Equals(other.PreserveUuidNodetypes)
                 ) &&
                 (
                     PreserveUuidSubtrees == other.PreserveUuidSubtrees ||
                     PreserveUuidSubtrees != null &&
                     PreserveUuidSubtrees.Equals(other.PreserveUuidSubtrees)
                 ) &&
                 (
                     AutoCommit == other.AutoCommit ||
                     AutoCommit != null &&
                     AutoCommit.Equals(other.AutoCommit)
                 ));
        }