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

            return
                ((
                     DsLoglevel == other.DsLoglevel ||
                     DsLoglevel != null &&
                     DsLoglevel.Equals(other.DsLoglevel)
                     ) &&
                 (
                     DsFactoryEnabled == other.DsFactoryEnabled ||
                     DsFactoryEnabled != null &&
                     DsFactoryEnabled.Equals(other.DsFactoryEnabled)
                 ) &&
                 (
                     DsDelayedKeepInstances == other.DsDelayedKeepInstances ||
                     DsDelayedKeepInstances != null &&
                     DsDelayedKeepInstances.Equals(other.DsDelayedKeepInstances)
                 ) &&
                 (
                     DsLockTimeoutMilliseconds == other.DsLockTimeoutMilliseconds ||
                     DsLockTimeoutMilliseconds != null &&
                     DsLockTimeoutMilliseconds.Equals(other.DsLockTimeoutMilliseconds)
                 ) &&
                 (
                     DsStopTimeoutMilliseconds == other.DsStopTimeoutMilliseconds ||
                     DsStopTimeoutMilliseconds != null &&
                     DsStopTimeoutMilliseconds.Equals(other.DsStopTimeoutMilliseconds)
                 ) &&
                 (
                     DsGlobalExtender == other.DsGlobalExtender ||
                     DsGlobalExtender != null &&
                     DsGlobalExtender.Equals(other.DsGlobalExtender)
                 ));
        }