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

            return
                ((
                     SlingContentDispositionPaths == other.SlingContentDispositionPaths ||
                     SlingContentDispositionPaths != null &&
                     SlingContentDispositionPaths.Equals(other.SlingContentDispositionPaths)
                     ) &&
                 (
                     SlingContentDispositionExcludedPaths == other.SlingContentDispositionExcludedPaths ||
                     SlingContentDispositionExcludedPaths != null &&
                     SlingContentDispositionExcludedPaths.Equals(other.SlingContentDispositionExcludedPaths)
                 ) &&
                 (
                     SlingContentDispositionAllPaths == other.SlingContentDispositionAllPaths ||
                     SlingContentDispositionAllPaths != null &&
                     SlingContentDispositionAllPaths.Equals(other.SlingContentDispositionAllPaths)
                 ));
        }