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

            return
                ((
                     SlingName == other.SlingName ||
                     SlingName != null &&
                     SlingName.Equals(other.SlingName)
                     ) &&
                 (
                     SlingDescription == other.SlingDescription ||
                     SlingDescription != null &&
                     SlingDescription.Equals(other.SlingDescription)
                 ));
        }