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

            return
                ((
                     ServicesList == other.ServicesList ||
                     ServicesList != null &&
                     ServicesList.Equals(other.ServicesList)
                     ) &&
                 (
                     Type == other.Type ||
                     Type != null &&
                     Type.Equals(other.Type)
                 ));
        }